File: //var/www/info.viitorcloud.in/wp-content/themes/infoviitorcloud/new-home-page.php
<?php
/*
Template Name: New Home page
*/
get_header();
?>
<!--<script type="text/javascript" src="<?php //echo get_template_directory_uri();?>/html5lightbox/jquery.js"></script>
<script type="text/javascript" src="<?php //echo get_template_directory_uri();?>/html5lightbox/html5lightbox.js"></script>
<script type="text/javascript" src="<?php //echo get_template_directory_uri();?>/html5lightbox/froogaloop2.min.js"></script>-->
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<div class="event">
<?php
// check if the flexible content field has rows of data
if( have_rows('home_page') ):
// loop through the rows of data
while ( have_rows('home_page') ) : the_row();
get_template_part( 'composer/home/content', get_row_layout() );
endwhile;
else :
// no layouts found
endif;
?>
</div>
</main><!-- #main -->
</div><!-- #primary -->
<?php get_footer();?>