This repository has been archived on 2020-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
_s/index.php

58 lines
1.2 KiB
PHP
Raw Permalink Normal View History

2012-01-07 03:25:13 +00:00
<?php
/**
2016-09-27 06:21:55 +00:00
* The main template file
2012-01-07 03:25:13 +00:00
*
* This is the most generic template file in a WordPress theme
* and one of the two required files for a theme (the other being style.css).
* It is used to display a page when nothing more specific matches a query.
* E.g., it puts together the home page when no home.php file exists.
*
2017-10-29 08:51:29 +00:00
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
2012-01-07 03:25:13 +00:00
*
* @package _s
*/
get_header();
?>
2012-01-07 03:25:13 +00:00
<main id="primary" class="site-main">
2012-01-07 03:25:13 +00:00
<?php
if ( have_posts() ) :
2012-01-07 03:25:13 +00:00
if ( is_home() && ! is_front_page() ) :
?>
<header>
<h1 class="page-title screen-reader-text"><?php single_post_title(); ?></h1>
</header>
<?php
endif;
2012-01-07 03:25:13 +00:00
/* Start the Loop */
while ( have_posts() ) :
the_post();
2015-05-27 17:49:01 +00:00
/*
* Include the Post-Type-specific template for the content.
* If you want to override this in a child theme, then include a file
* called content-___.php (where ___ is the Post Type name) and that will be used instead.
*/
get_template_part( 'template-parts/content', get_post_type() );
2012-01-07 03:25:13 +00:00
endwhile;
2012-01-07 03:25:13 +00:00
the_posts_navigation();
2012-01-07 03:25:13 +00:00
else :
2012-01-07 03:25:13 +00:00
get_template_part( 'template-parts/content', 'none' );
2012-01-07 03:25:13 +00:00
endif;
?>
2012-01-07 03:25:13 +00:00
</main><!-- #main -->
2012-01-07 03:25:13 +00:00
<?php
get_sidebar();
get_footer();