bib_wp/abchospitalitynepal.com/wp-content/themes/abchospitality/bib-parts/why-us.php

83 lines
3.3 KiB
PHP
Raw Normal View History

2024-03-14 08:08:55 +00:00
<!-- FEATURE AREA START ( Feature - 3) -->
2024-03-12 05:32:45 +00:00
<div class="ltn__feature-area pt-60 pb-60">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="section-title-area ltn__section-title-2 section-title-style-3 text-center mb-20">
2024-03-14 08:08:55 +00:00
2024-03-12 05:32:45 +00:00
<div class="section-title-in">
2024-03-14 08:08:55 +00:00
2024-03-12 05:32:45 +00:00
<h1 class="section-title" style="color:#017BAA">Why Choose Us</h1>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-4">
2024-03-14 08:08:55 +00:00
<div class="row justify-content-center">
2024-03-12 05:32:45 +00:00
<?php
if (have_rows('whyus', 54)) :
2024-03-12 10:14:02 +00:00
$counter = 1;
2024-03-14 08:08:55 +00:00
while (have_rows('whyus', 54) && $counter <= 3 ) :
the_row(); ?>
2024-03-12 05:32:45 +00:00
2024-03-14 08:08:55 +00:00
<div class="col-lg-12 col-md-6 col-12">
<div class="ltn__feature-item ltn__feature-item-3 text-right text-end">
<div class="ltn__feature-icon">
<span><img src="<?php the_sub_field('image') ?>" alt="#"></span>
</div>
<div class="ltn__feature-info">
<h3><a href="<?php the_permalink('');?>">
<?php echo get_sub_field('title')?></a></h3>
<?php echo get_sub_field('description')?>
</div>
</div>
</div>
<?php $counter++;
2024-03-12 05:32:45 +00:00
endwhile;
2024-03-14 08:08:55 +00:00
endif; ?>
</div>
2024-03-12 05:32:45 +00:00
</div>
<div class="col-lg-4">
<div class="feature-banner-img text-center mb-160">
<img src="<?php echo get_template_directory_uri(); ?>/img/others/2.png" alt="#">
</div>
</div>
<div class="col-lg-4">
2024-03-14 08:08:55 +00:00
<div class="row justify-content-center">
2024-03-12 05:32:45 +00:00
<?php
2024-03-14 08:08:55 +00:00
if (have_rows('whyus', 54)) :
// Counter variable to keep track of the number of fields displayed
$counter = 1;
2024-03-12 05:32:45 +00:00
// Loop through the repeater field
2024-03-14 08:08:55 +00:00
while (have_rows('whyus', 54) && $counter <= 3 ) : the_row();
2024-03-12 05:32:45 +00:00
// Increment the counter
2024-03-14 08:08:55 +00:00
?>
<div class="col-lg-12 col-md-6 col-12">
<div class="ltn__feature-item ltn__feature-item-3 text-left text-end">
2024-03-12 05:32:45 +00:00
<div class="ltn__feature-icon">
2024-03-14 08:08:55 +00:00
<span><img src="<?php the_sub_field('image') ?>" alt="#"></span>
2024-03-12 05:32:45 +00:00
</div>
2024-03-14 08:08:55 +00:00
<div class="ltn__feature-info">
<h3><a href="service-details.html"><?php the_sub_field('title')?></a></h3>
<?php the_sub_field('description')?>
</div>
</div>
</div>
<?php
$counter++;
2024-03-12 05:32:45 +00:00
endwhile;
2024-03-14 08:08:55 +00:00
endif; ?>
</div>
2024-03-12 05:32:45 +00:00
</div>
</div>
</div>
</div>
2024-03-14 08:08:55 +00:00
<!-- FEATURE AREA END -->