 <?php
/**
 * The main template file
 *
 * This is the most generic template file in a WordPress theme and one
 * of the two required files for a theme (the other being style.css).
 * It is used to display a page when nothing more specific matches a query,
 * e.g., it puts together the home page when no home.php file exists.
 *
 * @link https://codex.wordpress.org/Template_Hierarchy
 * @package Salient WordPress Theme
 * @version 9.0.2
 */
 
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

get_header(); ?>

<?php nectar_page_header( get_option( 'page_for_posts' ) ); ?>

<div class="container-wrap">
		
	<div class="container main-content">
		
		<div class="row">
			
			<?php
			$options = get_nectar_theme_options();

			$blog_type = $options['blog_type'];
			if ( $blog_type == null ) {
				$blog_type = 'std-blog-sidebar';
			}

			$masonry_class         = null;
			$masonry_style         = null;
			$infinite_scroll_class = null;
			$load_in_animation     = ( ! empty( $options['blog_loading_animation'] ) ) ? $options['blog_loading_animation'] : 'none';
			$blog_standard_type    = ( ! empty( $options['blog_standard_type'] ) ) ? $options['blog_standard_type'] : 'classic';
			$enable_ss             = ( ! empty( $options['blog_enable_ss'] ) ) ? $options['blog_enable_ss'] : 'false';
			$auto_masonry_spacing  = ( ! empty( $options['blog_auto_masonry_spacing'] ) ) ? $options['blog_auto_masonry_spacing'] : '4px';

			$remove_post_date           = ( ! empty( $options['blog_remove_post_date'] ) ) ? $options['blog_remove_post_date'] : '0';
			$remove_post_author         = ( ! empty( $options['blog_remove_post_author'] ) ) ? $options['blog_remove_post_author'] : '0';
			$remove_post_comment_number = ( ! empty( $options['blog_remove_post_comment_number'] ) ) ? $options['blog_remove_post_comment_number'] : '0';
			$remove_post_nectar_love    = ( ! empty( $options['blog_remove_post_nectar_love'] ) ) ? $options['blog_remove_post_nectar_love'] : '0';

			// enqueue masonry script if selected.
			if ( $blog_type == 'masonry-blog-sidebar' || $blog_type == 'masonry-blog-fullwidth' || $blog_type == 'masonry-blog-full-screen-width' ) {
				$masonry_class = 'masonry';
			}

			$blog_masonry_style = ( ! empty( $options['blog_masonry_type'] ) ) ? $options['blog_masonry_type'] : 'classic';


			if ( ! empty( $options['blog_pagination_type'] ) && $options['blog_pagination_type'] == 'infinite_scroll' ) {
				$infinite_scroll_class = ' infinite_scroll';
			}


			if ( $masonry_class != null ) {
				$masonry_style = ( ! empty( $options['blog_masonry_type'] ) ) ? $options['blog_masonry_type'] : 'classic';
			}

			$std_minimal_class = '';
			if ( $blog_standard_type == 'minimal' && $blog_type == 'std-blog-fullwidth' ) {
				$std_minimal_class = 'standard-minimal full-width-content';
			} elseif ( $blog_standard_type == 'minimal' && $blog_type == 'std-blog-sidebar' ) {
				$std_minimal_class = 'standard-minimal';
			}


			if ( $masonry_style == null && $blog_standard_type == 'featured_img_left' ) {
				$std_minimal_class = 'featured_img_left';
			}


			if ( $blog_type == 'std-blog-sidebar' || $blog_type == 'masonry-blog-sidebar' ) {
				echo '<div class="post-area col ' . $std_minimal_class . ' span_9 ' . esc_attr( $masonry_class ) . ' ' . esc_attr( $masonry_style ) . ' ' . $infinite_scroll_class . '" data-ams="' . esc_attr( $auto_masonry_spacing ) . '" data-remove-post-date="' . esc_attr( $remove_post_date ) . '" data-remove-post-author="' . esc_attr( $remove_post_author ) . '" data-remove-post-comment-number="' . esc_attr( $remove_post_comment_number ) . '" data-remove-post-nectar-love="' . esc_attr($remove_post_nectar_love ) . '"> <div class="posts-container"  data-load-animation="' . esc_attr( $load_in_animation ) . '">'; // WPCS: XSS ok.
			} else {
				if ( $blog_type == 'masonry-blog-full-screen-width' && $blog_masonry_style == 'auto_meta_overlaid_spaced' || $blog_type == 'masonry-blog-full-screen-width' && $blog_masonry_style == 'meta_overlaid' ) {
					echo '<div class="full-width-content blog-fullwidth-wrap meta-overlaid">'; } elseif ( $blog_type == 'masonry-blog-full-screen-width' ) {
					echo '<div class="full-width-content blog-fullwidth-wrap">'; }

					echo '<div class="post-area col ' . $std_minimal_class . ' span_12 col_last ' . esc_attr( $masonry_class ) . ' ' . esc_attr( $masonry_style ) . ' ' . $infinite_scroll_class . '" data-ams="' . esc_attr( $auto_masonry_spacing ) . '" data-remove-post-date="' . esc_attr( $remove_post_date ) . '" data-remove-post-author="' . esc_attr( $remove_post_author ) . '" data-remove-post-comment-number="' . esc_attr( $remove_post_comment_number ) . '" data-remove-post-nectar-love="' . esc_attr($remove_post_nectar_love) . '"> <div class="posts-container"  data-load-animation="' . esc_attr( $load_in_animation ) . '">'; // WPCS: XSS ok.
			}

				add_filter( 'wp_get_attachment_image_attributes', 'nectar_remove_lazy_load_functionality' );

			if ( have_posts() ) :
				while ( have_posts() ) :
					the_post();


						$nectar_post_format = ( get_post_format() == 'image' || get_post_format() == 'aside' ) ? false : get_post_format();
						get_template_part( 'includes/post-templates/entry', $nectar_post_format );


				endwhile;
			endif;

				remove_filter( 'wp_get_attachment_image_attributes', 'nectar_remove_lazy_load_functionality' );

			?>
				
			</div><!--/posts container-->
				
			<?php nectar_pagination(); ?>
				
		</div><!--/post-area-->
		
		<?php
		if ( $blog_type == 'masonry-blog-full-screen-width' ) {
			echo '</div>'; }
		?>
			
			<?php if ( $blog_type == 'std-blog-sidebar' || $blog_type == 'masonry-blog-sidebar' ) { ?>
				<div id="sidebar" data-nectar-ss="<?php echo esc_attr( $enable_ss ); ?>" class="col span_3 col_last">
					<?php get_sidebar(); ?>
				</div><!--/span_3-->
			<?php } ?>
			
		</div><!--/row-->
		
	</div><!--/container-->

</div><!--/container-wrap-->
	
<?php get_footer(); ?>