EstudioJuridicoAlmagro_Web/www/tag.php
2013-03-01 18:06:10 +00:00

30 lines
674 B
PHP

<?php
/**
* @package WordPress
* @subpackage Progressio
*/
$layout_type = 'full';
define('WPV_LAYOUT', 'no-sidebars');
get_header(); ?>
<?php if ( have_posts() ): the_post(); ?>
<header class="page-header">
<h1><?php printf( __( 'Tag Archives: %s', 'wpv' ), '<span>' . single_tag_title( '', false ) . '</span>' ); ?></h1>
</header>
<div class="clearfix page-wrapper">
<article id="post-<?php the_ID(); ?>" <?php post_class($layout_type); ?>>
<div class="page-content">
<?php rewind_posts() ?>
<?php get_template_part('loop', 'tag') ?>
</div><!-- .entry-content -->
</article>
</div>
<?php endif ?>
<?php get_footer() ?>