<?php
/*
Template Name: Front Page Slider
*/
get_header();
if ( have_rows( 'slide' ) ) {
get_template_part( 'parts/jumbotron-fullwidth' );
}
?>
<div class="content">
<div class="container">
<?php
if ( have_posts() ) : while ( have_posts() ) :
the_post();
the_content();
endwhile; endif;
?>
</div>
</div>
<?php get_footer(); ?>