????

Your IP : 216.73.216.152


Current Path : /home2/morganrand/public_html/sub/wp-content/themes/writee/inc/theme/layouts/
Upload File :
Current File : /home2/morganrand/public_html/sub/wp-content/themes/writee/inc/theme/layouts/grid.php

<?php 
/**************************************/
## Grid blog layout
/**************************************/

$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
$wrt_sidebar = esc_attr(get_theme_mod('wrt_sidebar_position', '2cr'));
$wrt_first_post_full = false;	
?>

<div class="grid-container <?php if($wrt_sidebar == '1c'): ?>grid-no-sidebar <?php else: ?> grid-with-sidebar <?php endif;?> <?php if($wrt_first_post_full && $paged <= 1): ?> grid-with-first <?php else: ?> grid-no-first <?php endif;?>">
	<?php 
		if(have_posts()):
			$counter = 0;
			while(have_posts()): the_post();
				$counter++;
				if($counter == 1 && $paged <= 1 && $wrt_first_post_full):
					get_template_part('inc/theme/layouts/grid/content-first-post');
				else:
					get_template_part('inc/theme/layouts/grid/content');
				endif;
				
			endwhile;
		else:
			get_template_part( 'inc/theme/views/content-none'); 
		endif; 
	?>
</div>