<?php

/*
 * Blog
 *
 * @package far_loop
 *
 */
	
get_header();

?>

<div class="u_pt-3 u_pt-md-6">
	<div class="l_container u_mv-5">
		<!-- page-title module-->
		<div class="page-title u_mb-3 u_mb-md-4">
			<!-- Page title-->
			<h1 class="page-title__apex-title u_mb-0p5"><?php _e( 'Blog', 'far_loop' );?></h1>
		</div>

		<?php
		if ( have_posts() ) :
		
		while ( have_posts() ) : the_post();
			
			$template = ( $wp_query->current_post == 0 ) ? 'highlight' : '';
			
			get_template_part( 'template-parts/content', $template );

		endwhile;
		
		endif; ?>
		
		<?php pagination_module(); ?>
	</div>
</div>





<?php

get_footer();