mirror of
https://github.com/WordPress/five-for-the-future.git
synced 2025-04-22 11:03:43 +03:00
17 lines
295 B
PHP
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();
|