five-for-the-future/themes/wporg-5ftf/single.php
Kelly Dwan 368d05e74d
Merge branch 'production' into fix/9
# Conflicts:
#	themes/wporg-5ftf/single.php
2019-10-25 16:50:53 -04:00

18 lines
301 B
PHP

<?php
namespace WordPressDotOrg\FiveForTheFuture\Theme;
get_header(); ?>
<main id="main" class="site-main" role="main">
<?php while ( have_posts() ) :
the_post();
get_template_part( 'template-parts/content', get_post_type() );
endwhile; ?>
</main><!-- #main -->
<?php get_footer();