File: D:/HostingSpaces/ERijn/knijft.eu/wwwroot/wp-content/themes/cheope/single.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
*/
if( is_portfolio() ) {
do_action( 'yit_portfolio' );
return;
}
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-single" class="span<?php echo yit_get_sidebar_layout() == 'sidebar-no' ? 12 : 9 ?> content group">
<?php
if( is_internal() )
{ do_action( 'yit_loop_internal' ); }
else
{ do_action( 'yit_loop' ); }
comments_template();
?>
</div>
<!-- END CONTENT -->
<?php do_action( 'yit_after_content' ) ?>
<?php get_sidebar() ?>
<?php do_action( 'yit_after_sidebar' ) ?>
</div>
</div>
</div>
<!-- END PRIMARY -->
<?php
do_action( 'yit_after_primary' );
get_footer() ?>