Current File : //home/itiffy/silverservice.melbourne/wp-content/themes/silverservice/book_online.php
<?php
/*Template Name:Book Online*/
get_header();
$page_id = get_the_ID();
?>
    <?php include_once('top.php'); ?>
           
    <!-- BANNER SECTION -->
       <div class="inner-banner-section clearfix" style="background:url(<?php wp_reset_query(); $banner = get_field('page_banner_image', $page_id); echo $banner['url']; ?>) no-repeat center / cover;"> </div>
    <!-- /BANNER SECTION -->

    <!-- CONTENT SECTION -->
      <div class="booking-section clearfix">
  <div class="container">
    <h2>Online Booking</h2>
    <h6>Get started with the finest</h6>
    <div class="row">
      <div class="col-md-8">
        <h4>Personal Details</h4>
        <hr>
        <?php echo do_shortcode('[contact-form-7 id="178" title="Book Now"]'); ?>
      </div>
      <div class="col-md-4">
        <div class="sidebar-section">
          <?php 
		   while(have_rows('side_panel_box_details',$page_id)): the_row();
		  ?>
          <article class="clearfix text-center">
            <h4><?php echo get_sub_field('heading'); ?></h4>
            <p><img src="<?php $icon = get_sub_field('icon'); echo $icon['url']; ?>"></p>
            <p><?php echo get_sub_field('content'); ?></p>
          </article>
          <hr>
          <?php endwhile; ?>
        </div>
      </div>
    </div>
  </div>
</div>
     
    <!--Footer start-->   
    <?php get_footer(); ?>
    
	<?php include_once('commonJs.php');  ?>
</body>
</html>