2013-07-29 00:55:10 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2013-10-12 00:02:11 +02:00
|
|
|
* The main template file
|
2013-07-29 00:55:10 +02:00
|
|
|
*
|
2013-12-03 18:06:11 +01: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.
|
|
|
|
*
|
2019-01-09 06:09:51 +01:00
|
|
|
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
|
2013-07-29 00:55:10 +02:00
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Twenty_Fourteen
|
2013-10-12 00:02:11 +02:00
|
|
|
* @since Twenty Fourteen 1.0
|
2013-07-29 00:55:10 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
get_header(); ?>
|
|
|
|
|
2013-10-30 15:39:10 +01:00
|
|
|
<div id="main-content" class="main-content">
|
|
|
|
|
|
|
|
<?php
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( is_front_page() && twentyfourteen_has_featured_posts() ) {
|
|
|
|
// Include the featured content template.
|
|
|
|
get_template_part( 'featured-content' );
|
|
|
|
}
|
2013-10-30 15:39:10 +01:00
|
|
|
?>
|
|
|
|
|
2013-07-29 00:55:10 +02:00
|
|
|
<div id="primary" class="content-area">
|
|
|
|
<div id="content" class="site-content" role="main">
|
|
|
|
|
2013-08-15 05:13:29 +02:00
|
|
|
<?php
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( have_posts() ) :
|
|
|
|
// Start the Loop.
|
|
|
|
while ( have_posts() ) :
|
|
|
|
the_post();
|
|
|
|
|
|
|
|
/*
|
2020-01-29 01:45:18 +01:00
|
|
|
* Include the post format-specific template for the content. If you want
|
|
|
|
* to use this in a child theme, then include a file called content-___.php
|
2017-12-01 00:11:00 +01:00
|
|
|
* (where ___ is the post format) and that will be used instead.
|
|
|
|
*/
|
|
|
|
get_template_part( 'content', get_post_format() );
|
2013-12-03 18:06:11 +01:00
|
|
|
|
2013-08-15 05:13:29 +02:00
|
|
|
endwhile;
|
2017-12-01 00:11:00 +01:00
|
|
|
// Previous/next post navigation.
|
|
|
|
twentyfourteen_paging_nav();
|
2013-07-29 00:55:10 +02:00
|
|
|
|
2013-08-15 05:13:29 +02:00
|
|
|
else :
|
2013-12-03 18:06:11 +01:00
|
|
|
// If no content, include the "No posts found" template.
|
2013-09-02 23:21:09 +02:00
|
|
|
get_template_part( 'content', 'none' );
|
2013-07-29 00:55:10 +02:00
|
|
|
|
2013-08-15 05:13:29 +02:00
|
|
|
endif;
|
2018-08-17 03:51:36 +02:00
|
|
|
?>
|
2013-07-29 00:55:10 +02:00
|
|
|
|
2013-08-15 05:13:29 +02:00
|
|
|
</div><!-- #content -->
|
|
|
|
</div><!-- #primary -->
|
2013-10-30 15:39:10 +01:00
|
|
|
<?php get_sidebar( 'content' ); ?>
|
|
|
|
</div><!-- #main-content -->
|
2013-07-29 00:55:10 +02:00
|
|
|
|
2013-08-15 05:13:29 +02:00
|
|
|
<?php
|
|
|
|
get_sidebar();
|
|
|
|
get_footer();
|