2019-09-25 00:37:41 +03:00
|
|
|
<?php
|
|
|
|
|
2019-10-22 20:57:04 +03:00
|
|
|
namespace WordPressDotOrg\FiveForTheFuture\Theme;
|
2019-09-25 00:37:41 +03:00
|
|
|
|
|
|
|
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();
|