mirror of
https://github.com/WordPress/five-for-the-future.git
synced 2025-04-22 11:03:43 +03:00
33 lines
590 B
PHP
33 lines
590 B
PHP
![]() |
<?php
|
||
|
|
||
|
namespace WordPressdotorg\Five_for_the_Future\Theme;
|
||
|
|
||
|
get_header(); ?>
|
||
|
|
||
|
<main id="main" class="site-main" role="main">
|
||
|
|
||
|
<?php if ( have_posts() ) :
|
||
|
if ( is_home() && ! is_front_page() ) : ?>
|
||
|
<header>
|
||
|
<h1 class="page-title screen-reader-text"><?php single_post_title(); ?></h1>
|
||
|
</header>
|
||
|
<?php endif;
|
||
|
|
||
|
while ( have_posts() ) :
|
||
|
the_post();
|
||
|
|
||
|
get_template_part( 'template-parts/plugin', 'index' );
|
||
|
endwhile;
|
||
|
|
||
|
the_posts_pagination();
|
||
|
|
||
|
else :
|
||
|
|
||
|
get_template_part( 'template-parts/content', 'none' );
|
||
|
|
||
|
endif; ?>
|
||
|
|
||
|
</main><!-- #main -->
|
||
|
|
||
|
<?php get_footer();
|