five-for-the-future/themes/wporg-5ftf/page.php

17 lines
292 B
PHP
Raw Permalink Normal View History

<?php
2019-10-22 20:57:04 +03:00
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', 'page' );
endwhile; ?>
</main><!-- #main -->
<?php get_footer();