File: D:/HostingSpaces/ERijn/knijft.eu/wwwroot/wp-content/themes/cheope/home.php
<?php
/**
* Your Inspiration Themes
*
* @package WordPress
* @subpackage Your Inspiration Themes
* @author Your Inspiration Themes Team <info@yithemes.com>
*
* This source file is subject to the GNU GENERAL PUBLIC LICENSE (GPL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://www.gnu.org/licenses/gpl-3.0.txt
*/
/*
Template Name: Home
*/
if( is_posts_page() || is_home() )
{ get_template_part( 'blog' ); die; }
get_header();
do_action( 'yit_before_primary' ) ?>
<!-- START PRIMARY -->
<div id="primary" class="<?php yit_sidebar_layout(); ?>">
<div class="container group">
<div class="row">
<?php do_action( 'yit_before_content' ) ?>
<!-- START CONTENT -->
<div id="content-home" class="span<?php echo yit_get_sidebar_layout() == 'sidebar-no' ? 12 : ( yit_get_option( 'home-sidebar-width' ) == '3' ? 9 : 10 ) ?> content group">
<?php
do_action( 'yit_loop_page' );
comments_template();
?>
</div>
<!-- END CONTENT -->
<?php do_action( 'yit_after_content' ) ?>
<?php get_sidebar() ?>
<?php do_action( 'yit_after_sidebar' ) ?>
<!-- START EXTRA CONTENT -->
<?php do_action( 'yit_extra_content' ) ?>
<!-- END EXTRA CONTENT -->
</div>
</div>
</div>
<!-- END PRIMARY -->
<?php
do_action( 'yit_after_primary' );
get_footer() ?>