21 lines
267 B
PHP
21 lines
267 B
PHP
<?php get_header(); ?>
|
|
|
|
<div>
|
|
|
|
<?php if ( have_posts() ) : ?>
|
|
<?php
|
|
while ( have_posts() ) :
|
|
the_post();
|
|
?>
|
|
|
|
<?php get_template_part( 'template-parts/content', get_post_format() ); ?>
|
|
|
|
<?php endwhile; ?>
|
|
|
|
<?php endif; ?>
|
|
|
|
</div>
|
|
|
|
<?php
|
|
get_footer();
|