2014-08-17 16:55:38 +01: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 storefront
|
|
|
|
*/
|
|
|
|
|
|
|
|
get_header(); ?>
|
|
|
|
|
|
|
|
<div id="primary" class="content-area">
|
|
|
|
<main id="main" class="site-main" role="main">
|
|
|
|
|
2016-01-21 10:50:49 +00:00
|
|
|
<?php if ( have_posts() ) :
|
2014-08-17 16:55:38 +01:00
|
|
|
|
2016-01-21 10:50:49 +00:00
|
|
|
get_template_part( 'loop' );
|
2014-08-17 16:55:38 +01:00
|
|
|
|
2016-01-21 10:50:49 +00:00
|
|
|
else :
|
2014-08-17 16:55:38 +01:00
|
|
|
|
2016-01-21 10:50:49 +00:00
|
|
|
get_template_part( 'content', 'none' );
|
2014-08-17 16:55:38 +01:00
|
|
|
|
2016-01-21 10:50:49 +00:00
|
|
|
endif; ?>
|
2014-08-17 16:55:38 +01:00
|
|
|
|
|
|
|
</main><!-- #main -->
|
|
|
|
</div><!-- #primary -->
|
|
|
|
|
2014-08-28 18:25:08 +01:00
|
|
|
<?php do_action( 'storefront_sidebar' ); ?>
|
2014-08-17 16:55:38 +01:00
|
|
|
<?php get_footer(); ?>
|