bib_wp/abchospitalitynepal.com/wp-content/themes/abchospitality/bib-parts/about-us.php
2024-03-12 15:59:02 +05:45

35 lines
1.3 KiB
PHP

<!-- ABOUT US AREA START -->
<div class="ltn__about-us-area pt-120 pb-120">
<div class="container">
<div class="row">
<?php
if( have_rows('about', 228) ) :
// Loop through the repeater field
while( have_rows('about', 228) ) : the_row(); ?>
<div class="col-lg-6 align-self-center">
<div class="about-us-img-wrap about-img-left">
<img src="<?php the_sub_field('image'); ?>" alt="About Us Image">
</div>
</div>
<div class="col-lg-6 align-self-center">
<div class="about-us-info-wrap">
<div class="section-title-area ltn__section-title-2">
<h6 class="section-subtitle ltn__secondary-color">About Us</h6>
<h1 class="section-title"><?php the_sub_field('title');?></h1>
</div>
<p><?php the_sub_field('description'); ?></p>
</div>
<a href="about-us.php"> <button class='btn btn-custom-color'>Read More</button></a>
</div>
<?php
endwhile;
endif;
?>
</div>
</div>
</div>
<!-- ABOUT US AREA END -->