2018-11-13 21:41:39 -05:00
|
|
|
<?php
|
|
|
|
get_header();
|
|
|
|
if ( have_posts() ) : while ( have_posts() ) : the_post();
|
2018-11-16 09:40:14 -05:00
|
|
|
get_template_part( 'content', get_post_format() );
|
2018-11-13 21:41:39 -05:00
|
|
|
endwhile;
|
|
|
|
else :
|
|
|
|
_e( 'Sorry, no posts matched your criteria.', 'textdomain' );
|
|
|
|
endif;
|
|
|
|
//get_sidebar();
|
|
|
|
get_footer();
|
|
|
|
?>
|