????

Your IP : 216.73.216.152


Current Path : /home2/morganrand/public_html/sub/wp-content/themes/writee/templates/
Upload File :
Current File : /home2/morganrand/public_html/sub/wp-content/themes/writee/templates/with-left-sidebar.php

<?php 
/******************************************/
## Writee templates
## Content page with sidebar left hand side.
/******************************************/
/*
Template Name: With Left Sidebar
*/


get_header();
?>
	<section class="site-main with-left-sidebar ">
        <div class="site-container">
            <div class="site-row">
				
				<div class="site-content with-sidebar" id="site-content" role="main">
                   
					<?php 
					if(have_posts()):
						while(have_posts()): the_post();
							get_template_part('inc/theme/views/content-page'); 
						endwhile;
					else:
						get_template_part('inc/theme/views/content-none'); 
					endif; 
					?>
					
					<?php 
						// If comments are open or we have at least one comment, load up the comment template.
						if ( comments_open() || get_comments_number() ) :
							comments_template('', true );
						endif;
					?>
						
				</div>
				
				<div class="site-sidebar" id="sidebar" role="complementary">
					<?php get_sidebar(); ?>
				</div>
			
			</div>
		</div>
	</section>
<?php 
get_footer();
?>