
<?php /* Template Name: Home Page */ ?>

<?php get_header(); ?>

<div class="wrap">
    <div id="primary" class="content-area">
        <main id="main" class="site-main" role="main">
            <div id="home" class="fullCommon mainSlider"><?php masterslider(1); ?></div>


            <div class="fullCommon middleContent">

            <?php

            if ( have_posts() ) {

                while ( have_posts() ) {
                    the_post();

                    get_template_part( 'template-parts/content', get_post_type() );
                }
            }

            ?>

            </div>    

            
       </main><!-- #site-content -->
                         
        </main><!-- #main -->
    </div><!-- #primary -->
</div><!-- .wrap -->

<?php get_footer(); ?>

