Ejemplo n.º 1
0
			</h1>
		</header><!-- .archive-header -->

		<?php 
    // Start the Loop.
    while (have_posts()) {
        the_post();
        /*
         * Include the post format-specific template for the content. If you want to
         * use this in a child theme, then include a file called called content-___.php
         * (where ___ is the post format) and that will be used instead.
         */
        get_template_part('content', get_post_format());
    }
    // Previous/next page navigation.
    PostsHelper::theme_paging_nav('array');
} else {
    // If no content, include the "No posts found" template.
    get_template_part('content', 'none');
}
?>
		</div><!-- #content-primary -->
		
		<div id="content-sidebar" class="col-md-3">
		
			<?php 
get_sidebar();
?>
		
		</div><!-- #content-sidebar -->