Current File : /home/itiffy/silverservice.melbourne/wp-content/themes/silverservice/about.php
<?php
/*Template Name:About Us*/
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="about-section clearfix">
      <div class="container">
        <div class="section01 clearfix">
          <h2><?php the_title(); ?></h2>
          <h6><?php the_field('page_sub_heading',$page_id); ?></h6>
          <?php the_field('page_intro_section',$page_id); ?>
        </div>
        <div class="section02 clearfix">
          <div class="row">
            <?php wp_reset_query(); while(have_rows('middle_page_content_section', $page_id)){ the_row();
			   $image = get_sub_field('thumbnail_image'); 
			?>
            <div class="col-md-4">
              <p><img src="<?php echo $image['url']; ?>" alt=""></p>
              <h4><?php echo get_sub_field('heading'); ?></h4>
              <?php echo get_sub_field('content'); ?>
            </div>
            <?php } ?>
          </div>
        </div>
        <div class="section03 clearfix">
          <?php the_field('bottom_section_text',$page_id); ?>
        </div>
      </div>
</div>
     
    <!--Footer start-->   
    <?php get_footer(); ?>
    
	<?php include_once('commonJs.php');  ?>
</body>
</html>