mirror of
https://github.com/WordPress/five-for-the-future.git
synced 2025-04-22 11:03:43 +03:00
18 lines
293 B
PHP
18 lines
293 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/plugin', 'single' );
|
|
endwhile; ?>
|
|
|
|
</main><!-- #main -->
|
|
|
|
<?php get_footer();
|