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.
|
2015-07-01 15:21:44 +00:00
|
|
|
*
|
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
|
|
|
|
*/
|
|
|
|
|
2017-08-01 20:27:46 +00:00
|
|
|
get_header();
|
|
|
|
?>
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2018-01-02 22:57:02 +00:00
|
|
|
<main id="primary" class="site-main">
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2015-11-11 21:59:40 +00:00
|
|
|
<?php
|
|
|
|
if ( have_posts() ) :
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2017-08-01 20:27:46 +00:00
|
|
|
if ( is_home() && ! is_front_page() ) :
|
|
|
|
?>
|
2015-07-02 20:51:04 +00:00
|
|
|
<header>
|
|
|
|
<h1 class="page-title screen-reader-text"><?php single_post_title(); ?></h1>
|
|
|
|
</header>
|
2017-08-01 20:27:46 +00:00
|
|
|
<?php
|
2015-11-11 21:59:40 +00:00
|
|
|
endif;
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2015-11-11 21:59:40 +00:00
|
|
|
/* Start the Loop */
|
2017-08-01 20:27:46 +00:00
|
|
|
while ( have_posts() ) :
|
|
|
|
the_post();
|
2015-05-27 17:49:01 +00:00
|
|
|
|
2015-11-11 21:59:40 +00:00
|
|
|
/*
|
2018-02-28 01:07:58 +00:00
|
|
|
* Include the Post-Type-specific template for the content.
|
2015-11-11 21:59:40 +00:00
|
|
|
* If you want to override this in a child theme, then include a file
|
2018-02-28 01:07:58 +00:00
|
|
|
* called content-___.php (where ___ is the Post Type name) and that will be used instead.
|
2015-11-11 21:59:40 +00:00
|
|
|
*/
|
2018-02-28 01:07:58 +00:00
|
|
|
get_template_part( 'template-parts/content', get_post_type() );
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2015-11-11 21:59:40 +00:00
|
|
|
endwhile;
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2015-11-11 21:59:40 +00:00
|
|
|
the_posts_navigation();
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2015-11-11 21:59:40 +00:00
|
|
|
else :
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2015-11-11 21:59:40 +00:00
|
|
|
get_template_part( 'template-parts/content', 'none' );
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2017-08-01 20:27:46 +00:00
|
|
|
endif;
|
|
|
|
?>
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2018-01-02 22:57:02 +00:00
|
|
|
</main><!-- #main -->
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2015-11-11 21:59:40 +00:00
|
|
|
<?php
|
|
|
|
get_sidebar();
|
|
|
|
get_footer();
|