bib_wp/abchospitalitynepal.com/wp-content/themes/abchospitality/page-our-values.php
2024-03-14 13:53:55 +05:45

133 lines
5.9 KiB
PHP

<?php
/**
* Template Name: Our Values
*/
get_header(); ?>
<?php
while ( have_posts() ) :
the_post();?>
<!-- BREADCRUMB AREA START -->
<div class="ltn__breadcrumb-area ltn__breadcrumb-area-2 ltn__breadcrumb-color-white bg-overlay-theme-black-90 bg-image"
data-bg="img/bg/breadcrumb.png">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="ltn__breadcrumb-inner ltn__breadcrumb-inner-2 justify-content-between">
<div class="section-title-area ltn__section-title-2">
<!-- <h6 class="section-subtitle ltn__secondary-color">// Welcome to our company</h6> -->
<h1 class="section-title white-color">Our Values</h1>
</div>
<div class="ltn__breadcrumb-list">
<ul>
<li><a href="index.html">Home</a></li>
<li>Our Values</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- BREADCRUMB AREA END -->
<!-- SERVICE AREA START (Service 1) -->
<div class="ltn__service-area section-bg-1 pt-75 pb-70 mb-60">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="section-title-area ltn__section-title-2 text-center">
<h1 class="section-title white-color---">Our Values</h1>
</div>
</div>
</div>
<div class="row justify-content-center">
<?php
if( have_rows('our_values', 322) ) :
// Loop through the repeater field
while( have_rows('our_values', 322) ) : the_row(); ?>
<div class="col-lg-4 col-sm-6">
<div class="ltn__service-item-1">
<div class="service-item-img">
<img src=" <?php the_sub_field('image'); ?>">
</div>
<div class="service-item-brief">
<h3><?php the_sub_field('title'); ?></h3>
<p><?php the_sub_field('description'); ?></p>
</div>
</div>
</div>
<?php endwhile;
endif;
?>
<!-- <div class="col-lg-4 col-sm-6">
<div class="ltn__service-item-1">
<div class="service-item-img">
<a href="workplace-diversity.php"><img src="img/service/env.png" alt="#"></a>
</div>
<div class="service-item-brief">
<h3><a href="workplace-diversity.php">Workplace Diversity</a></h3>
<p>Committed to nurturing diverse talents and fostering an inclusive work environment,
recognizing the strength and innovation that arises from embracing a wide range of
perspectives and backgrounds.</p>
</div>
</div>
</div>
<div class="col-lg-4 col-sm-6">
<div class="ltn__service-item-1">
<div class="service-item-img">
<a href="championing-equity.php"><img src="img/service/equity.png" alt="#"></a>
</div>
<div class="service-item-brief">
<h3><a href="championing-equity.php">Championing Equity</a></h3>
<p>Upholding principles of fairness and justice, actively advocating for equal opportunities
across all aspects of its operations and within the broader community.</p>
</div>
</div>
</div>
<div class="col-lg-4 col-sm-6">
<div class="ltn__service-item-1">
<div class="service-item-img">
<a href="sustainability.php"><img src="img/service/sustain.png" alt="#"></a>
</div>
<div class="service-item-brief">
<h3><a href="sustainability.php">Sustainability</a></h3>
<p>To integrate environmentally friendly practices into our operations, contributing to a
sustainable and eco-conscious future.</p>
</div>
</div>
</div> -->
<!-- <div class="col-lg-4 col-sm-6">
<div class="ltn__service-item-1">
<div class="service-item-img">
<a href="global-expansion.php"><img src="img/service/expansion.jpg" alt="#"></a>
</div>
<div class="service-item-brief">
<h3><a href="global-expansion.php">Global Expansion</a></h3>
<p> To strategically expand our footprint globally, reaching new markets and clientele while
maintaining a localized approach. </p>
</div>
</div>
</div>
<div class="col-lg-4 col-sm-6">
<div class="ltn__service-item-1">
<div class="service-item-img">
<a href="child-labor-free.php"><img src="img/service/child.png" alt="#"></a>
</div>
<div class="service-item-brief">
<h3><a href="child-labor-free.php">Child Labor Free Environment</a></h3>
<p>ABC Hospitality places social responsibility at its core, actively promoting and maintaining
a workplace that is free from child labor, emphasizing ethical practices in all operations.
</p>
</div>
</div>
</div> -->
</div>
</div>
</div>
<!-- SERVICE AREA END -->
<?php
endwhile;
get_footer();
?>