my home page code :
<?php
/*
Template Name: Home Page
*/
?>
<?php get_header(); ?>
<?php
echo do_shortcode(‘[image-carousel category=”home”]’);
?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; else: ?>
<p><?php _e(‘Sorry, this page does not exist.’); ?></p>
<?php endif; ?>
<?php get_footer(); ?>
<?php wp_footer(”); ?>