mirror of
https://github.com/WordPress/five-for-the-future.git
synced 2025-04-21 10:33:44 +03:00
17 lines
292 B
PHP
17 lines
292 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', 'page' );
|
|
endwhile; ?>
|
|
|
|
</main><!-- #main -->
|
|
|
|
<?php get_footer();
|