2013-07-28 18:55:10 -04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* The main template file.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
* Learn more: http://codex.wordpress.org/Template_Hierarchy
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Twenty_Fourteen
|
|
|
|
*/
|
|
|
|
|
|
|
|
get_header(); ?>
|
|
|
|
|
|
|
|
<div id="primary" class="content-area">
|
|
|
|
<div id="content" class="site-content" role="main">
|
|
|
|
|
2013-08-14 23:13:29 -04:00
|
|
|
<?php
|
|
|
|
if ( have_posts() ) :
|
|
|
|
while ( have_posts() ) :
|
|
|
|
the_post();
|
2013-07-28 18:55:10 -04:00
|
|
|
|
2013-08-22 13:03:10 -04:00
|
|
|
get_template_part( 'content', get_post_format() );
|
2013-08-14 23:13:29 -04:00
|
|
|
endwhile;
|
2013-08-14 23:13:44 -04:00
|
|
|
twentyfourteen_paging_nav();
|
2013-07-28 18:55:10 -04:00
|
|
|
|
2013-08-14 23:13:29 -04:00
|
|
|
else :
|
2013-09-02 17:21:09 -04:00
|
|
|
get_template_part( 'content', 'none' );
|
2013-07-28 18:55:10 -04:00
|
|
|
|
2013-08-14 23:13:29 -04:00
|
|
|
endif;
|
|
|
|
?>
|
2013-07-28 18:55:10 -04:00
|
|
|
|
2013-08-14 23:13:29 -04:00
|
|
|
</div><!-- #content -->
|
|
|
|
</div><!-- #primary -->
|
2013-07-28 18:55:10 -04:00
|
|
|
|
2013-08-14 23:13:29 -04:00
|
|
|
<?php
|
|
|
|
get_sidebar( 'content' );
|
|
|
|
get_sidebar();
|
|
|
|
get_footer();
|