<!-- Ski Resort Review Insight article  -->
<!-- Single post with sidebar -->

<?php if ( in_category('resort-insight')) { ?>


<!-- Insight -->
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>

		
	
		<section id="location-image">					
					
						<div class="inprofile-img-wrapper"> 
						<div class="imageBlock-heroImage">
						<span class="white-snowflake"></span>
							<?php 	$image = get_field('banner_image');
							if( !empty($image) ): ?>
							<img src="<?php echo $image['url']; ?>" alt="<?php echo $image['alt']; ?>" />
							<?php endif; ?>
						
						</div>
						</div>
							
					
	</section>


		<div class="ski-insight-container">
		<div class="feature-title">
			<h1><?php the_title(); ?> </h1>
			<h2>
			<?php
			$value = get_field( "feature-sub-title" );
			if( $value ) {
       		echo $value;
			} else {
		   echo '';
    
			}
			 ?></h2>
			 </div>



			<?php the_content(); // Dynamic Content ?>

			<!-- Copyright -->
			<p class="copyright"><?php _e( 'Feature by ', 'html5blank' ); the_author(); ?>, &copy; <?php echo date("Y") ?></p>		
			<!-- ends copyright -->

			
		
		</div>
	


			



</article>
<!-- /end Insight -->

	<?php get_sidebar ('share-buttons'); ?>
	<?php get_sidebar ('resort-insight'); ?>
	<?php get_sidebar ('primary'); ?>

	

<?php  }// end if in resort insight ?>	


<!-- Ends Ski Resorts Insights -->