17 lines
307 B
PHP
17 lines
307 B
PHP
<?php get_header(); ?>
|
|
|
|
<main>
|
|
|
|
<?php
|
|
if ( have_posts() ) : while ( have_posts() ) : the_post();
|
|
get_template_part( 'content', get_post_format() );
|
|
endwhile;
|
|
else :
|
|
_e( 'Sorry, no posts matched your criteria.', 'textdomain' );
|
|
endif;
|
|
//get_sidebar();
|
|
?>
|
|
|
|
</main>
|
|
|
|
<?php get_footer(); ?>
|