Your IP : 216.73.216.95


Current Path : /var/test/www/html/37thanniversary/wp-content/themes/crowdngo/
Upload File :
Current File : /var/test/www/html/37thanniversary/wp-content/themes/crowdngo/home.php

<?php
get_header();
$sidebar_configs = crowdngo_get_blog_layout_configs();

crowdngo_render_breadcrumbs();
?>
<section id="main-container" class="main-content home-page-default <?php echo apply_filters('crowdngo_blog_content_class', 'container');?> inner">
	<?php crowdngo_before_content( $sidebar_configs ); ?>
	<div class="row">
		<?php crowdngo_display_sidebar_left( $sidebar_configs ); ?>

		<div id="main-content" class="col-sm-12 <?php echo esc_attr($sidebar_configs['main']['class']); ?>">
			<div id="main" class="site-main layout-blog" role="main">

			<?php if ( have_posts() ) : ?>

				<header class="page-header hidden">
					<?php
						the_archive_title( '<h1 class="page-title">', '</h1>' );
						the_archive_description( '<div class="taxonomy-description">', '</div>' );
					?>
				</header><!-- .page-header -->

				<?php
				$layout = crowdngo_get_config( 'blog_display_mode', 'list' );
				get_template_part( 'template-posts/layouts/'.$layout );

				// Previous/next page navigation.
				crowdngo_paging_nav();

			// If no content, include the "No posts found" template.
			else :
				get_template_part( 'template-posts/content', 'none' );

			endif;
			?>

			</div><!-- .site-main -->
		</div><!-- .content-area -->
		
		<?php crowdngo_display_sidebar_right( $sidebar_configs ); ?>
		
	</div>
</section>
<?php get_footer(); ?>