File: /home/samfetchero1/pacificnorthwestcoastbias.com/wp-content/themes/maxwell/home.php
<?php
/**
* The template for displaying the blog index (latest posts)
*
* Learn more: http://codex.wordpress.org/Template_Hierarchy
*
* @package Maxwell
*/
get_header();
// Get Theme Options from Database.
$theme_options = maxwell_theme_options();
// Display Slider.
if ( true === $theme_options['slider_blog'] && ! maxwell_is_amp() ) :
get_template_part( 'template-parts/post-slider' );
endif;
?>
<section id="primary" class="content-archive content-area">
<main id="main" class="site-main" role="main">
<?php
// Display Magazine Homepage Widgets.
maxwell_magazine_widgets();
do_action( 'maxwell_before_blog' );
if ( have_posts() ) :
// Display Blog Title.
maxwell_blog_title();
?>
<div id="post-wrapper" class="post-wrapper clearfix">
<?php while ( have_posts() ) : the_post();
get_template_part( 'template-parts/content' );
endwhile; ?>
</div>
<?php maxwell_pagination(); ?>
<?php
else :
get_template_part( 'template-parts/content', 'none' );
endif; ?>
</main><!-- #main -->
</section><!-- #primary -->
<?php // Do not display Sidebar on Three Column Post Layout.
if ( 'three-columns' !== $theme_options['post_layout'] ) :
get_sidebar();
endif; ?>
<?php get_footer(); ?>