Current File : /home/itiffy/rockyjohnsonconcrete.com/wp-content/themes/rockyjohnson/page.php |
<?php get_header(); ?>
<?php include_once('top.php'); ?>
<!-- BANNER SECTION -->
<div class="inner-banner-section clearfix" style="background:url(<?php echo the_post_thumbnail_url(); ?>) no-repeat center;">
<div class="container">
<h1>
<?php wp_reset_query(); the_title(); ?>
</h1>
</div>
</div>
<!-- /BANNER SECTION -->
<!-- CONTENT SECTION -->
<div class="content-section clearfix">
<div class="inner-section01 clearfix">
<div class="container">
<h2><strong><?php wp_reset_query(); echo get_field('inner-section01-heading',get_the_ID()); ?></strong></h2>
<p class="text-uppercase"><?php wp_reset_query(); echo get_field('inner-section01-subheading01',get_the_ID()); ?></p>
<h5><?php wp_reset_query(); echo get_field('inner-section01-subheading02',get_the_ID()); ?></h5>
<?php wp_reset_query(); echo get_field('inner-section01-content',get_the_ID()); ?>
</div>
</div>
<div class="inner-section02 clearfix">
<div class="container">
<h2><?php wp_reset_query(); echo get_field('inner-section02-heading',get_the_ID()); ?></h2>
<?php wp_reset_query(); echo get_field('inner-section02-content',get_the_ID()); ?>
<p> </p>
<div class="row">
<?php
// check if the repeater field has rows of data
if( have_rows('page_gallery') ):
// loop through the rows of data
while ( have_rows('page_gallery') ) : the_row();
?>
<div class="col-sm-3">
<div class="box"><a data-fancybox="gallery" href="<?php the_sub_field('image');?>" data-caption="<?php the_sub_field('title');?>"><img src="<?php the_sub_field('image');?>" /></a><p><?php the_sub_field('title');?></p></div>
</div>
<?php
endwhile;
endif;
?>
</div>
</div>
</div>
<div class="inner-section03 clearfix">
<div class="container">
<h2><?php wp_reset_query(); echo get_field('inner-section03-heading',get_the_ID()); ?></h2>
<h6><?php wp_reset_query(); echo get_field('inner-section03-content',get_the_ID()); ?></h6>
<p><?php $image = get_field('inner-section03-img01',get_the_ID()); ?><img src="<?php echo $image['url']; ?>" /> <?php $image = get_field('inner-section03-img02',get_the_ID()); ?><img src="<?php echo $image['url']; ?>" /> <?php $image = get_field('inner-section03-img03',get_the_ID()); ?><img src="<?php echo $image['url']; ?>" /></p>
</div>
</div>
</div>
<!-- /CONTENT SECTION -->
<!--Footer start-->
<?php get_footer(); ?>
<?php include_once('commonJs.php'); ?>
</body>
</html>