Files
WalterBrake 9667b8279d update walter
4 documentation
2017-02-04 11:39:02 -06:00

135 lines
4.2 KiB
PHP

<div id="pdf_view">
<div id="pdf3"></div>
<div id="cerrar">
<button onclick="ocultar()" type="button" class="btn btn-danger btn-lg"><span class="glyphicon glyphicon-remove "></span>
</button>
</div>
<div id="container_close" onclick="ocultar()" >
</div>
</div>
<?php get_header(); ?>
<div id="conteiner">
<!-- estamos en single.php -->
<h2>single1.php</h2>
<?php if (have_posts()) :
while (have_posts()) : the_post(); ?>
<div class="container carac">
<div class="row">
<div class="col-lg-5 col-md-5 col-sm-6 col-xs-12">
<?php if(has_post_thumbnail() ): ?>
<div class="imagen-post-thumbnail">
<?php the_post_thumbnail('post-thumbnail', array('class' => 'img-responsive')); ?>
</div>
<?php endif; ?>
</div>
<div class="col-lg-7 col-md-7 col-sm-6 col-xs-12">
<h1><?php the_title(); ?></h1>
<p>Disponibilidad: <small><?php echo get_post_meta($post->ID,'Disponibilidad',true); ?></small></p>
<p>Mira otros productos de Dirección General de Publicaciones y Fomento Editorial</p>
<p><strong>Autor:</strong>
<?php echo get_post_meta($post->ID,'Autor',true); ?>
</p>
<p><strong>Tamaño:</strong>
<?php echo get_post_meta($post->ID,'Tamaño',true); ?>
</p>
<p><strong>ISBN/ISSN:</strong>
<?php echo get_post_meta($post->ID,'ISBN/ISSN',true); ?>
</p>
<div class="row">
<div class="col-lg-2">
<img src="<?php echo get_template_directory_uri();?>/css/libro.jpg" alt="libros">
</div>
<div class="col-lg-9">
<h2><strong>Libro Impreso</strong></h2>
</div>
</div>
<br>
<div class="linea"></div>
<p class="text-justify">
<?php the_content(); ?>
</p>
<br>
<!--Botones de vista previa y boton de compra-->
<div class="col-sm-12">
<div class="col-md-4 col-sm-6 col-xs-12 ">
<a id="lineamientos" onclick="mostrar('<?php echo get_post_meta($post->ID,'Vermuestragratis',true); ?>')" style="float:none;" >
<button class="btn btn-primary"><span></span>Ver muestra gratis</button>
</a>
<a id="lineamientos-2" target="_blank" href="<?php echo get_post_meta($post->ID,'Vermuestragratis',true); ?>" style="float:none;"><button class="btn btn-primary"><span></span>Ver muestra gratis</button>
</a>
</div>
<div class="col-md-4 col-sm-6 col-xs-12 ">
<a href="http://www.libros.unam.mx/area-tematica/ciencias-sociales/derecho/la-lengua-del-derecho-y-el-derecho-de-la-lengua-direccion-general-de-publicaciones-y-fomento-editorial.html">
<button class="btn btn-primary"><span></span>$250.00 Comprar</button>
</a>
</div>
</div>
</div>
</div>
</div>
<br>
<?php endwhile; ?>
<?php else :
echo '<p>no content found</p>'
?>
<h2>Not Found</h2>
<?php endif; ?>
</div>
<?php get_footer(); ?>