five-for-the-future/themes/wporg-5ftf/page.php
Ian Dunn de191e098b
Theme: Initial commit.
This was forked from `pub/wporg-main` and `pub/wporg-plugins`, and then customized.
2019-09-24 16:23:39 -07:00

17 lines
295 B
PHP

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