File: /home/wantglasses.co.uk/public_html/wp-content/themes/sg-window/front-page.php
<?php
/**
* The template for displaying front page
*
* @package WordPress
* @subpackage sgwindow
* @since SG Window 1.0.0
*/
get_header();
if( ! ( '' == sgwindow_get_theme_mod('front_page_style') && ! is_home()) ) :
$sgwindow_layout = sgwindow_get_theme_mod('layout_home');
if( is_home() )
$sgwindow_layout_content = sgwindow_get_theme_mod('layout_blog_content');
else
$sgwindow_layout_content = 'front_page';
?>
<div class="main-wrapper <?php echo esc_attr(sgwindow_content_class($sgwindow_layout_content)); ?> <?php echo esc_attr($sgwindow_layout); ?> ">
<div class="site-content">
<?php
if ( have_posts() ) : ?>
<div class="content">
<?php
while ( have_posts() ) : the_post();
if( is_page() ) :
get_template_part( 'content', 'page' );
else :
get_template_part( 'content', sgwindow_get_content_prefix() );
endif;
endwhile; ?>
<div class="content-search">
<?php do_action( 'sgwindow_after_content' ); ?>
</div><!-- .content-search -->
</div><!-- .content -->
<div class="clear"></div>
<?php
sgwindow_paging_nav();
else :
?>
<div class="content">
<?php
get_template_part( 'content', 'none' );
?>
</div><!-- .content -->
<?php
endif;
?>
</div><!-- .site-content -->
<?php
sgwindow_get_sidebar( sgwindow_get_theme_mod( 'layout_home' ) );
?>
</div> <!-- .main-wrapper -->
<?php
endif;
get_footer();