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