all changes
This commit is contained in:
@ -0,0 +1,119 @@
|
||||
<?php
|
||||
/**
|
||||
* Template Name: About Page
|
||||
*/
|
||||
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">//About Us</h6> -->
|
||||
<h1 class="section-title white-color">About Us</h1>
|
||||
</div>
|
||||
<div class="ltn__breadcrumb-list">
|
||||
<ul>
|
||||
<li><a href="index.php">Home</a></li>
|
||||
<li>About Us</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- BREADCRUMB AREA END -->
|
||||
|
||||
|
||||
<!-- ABOUT US AREA START -->
|
||||
<div class="ltn__about-us-area mt-100 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">ABC Hospitality</h1>
|
||||
</div>
|
||||
<p>Welcome to ABC Hospitality Business, an esteemed player in the field of uniform craftsmanship.
|
||||
Operating under the legal entity ABC Hospitality Business, we take pride in our pivotal role in
|
||||
the supply and trading of meticulously crafted uniforms, reinforcing our commitment to
|
||||
excellence in the dynamic hospitality industry.</p>
|
||||
<p>Beyond transactions, our collaboration philosophy with partners extends to a shared commitment to
|
||||
tradition, authenticity, and the promotion of local talent. Our official online portal,
|
||||
poosak.com, serves as a seamless gateway showcasing premium products resulting from this
|
||||
commitment, symbolizing our devotion to accessibility and modern convenience.</p>
|
||||
<p>Central to our ethos is the emphasis on 'Made in Nepal.' ABC Hospitality Business actively
|
||||
contributes to preserving the rich heritage of Nepali craftsmanship. Each uniform delivered
|
||||
through our dedication to meticulous customization, sustainable practices, and the relentless
|
||||
pursuit of perfection is a testament to our commitment to unparalleled quality within the
|
||||
hospitality industry.</p>
|
||||
<p>Join us on this journey where tradition meets innovation, and craftsmanship intertwines with
|
||||
modernity. ABC Hospitality Business stands proudly as a beacon of excellence in the world of
|
||||
uniform supply and trading, reinforcing our commitment to delivering the very best in
|
||||
hospitality attire.</p>
|
||||
</div>
|
||||
</div>
|
||||
<?php
|
||||
|
||||
endwhile;
|
||||
endif;
|
||||
?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- ABOUT US AREA END -->
|
||||
<!-- FEATURE AREA START ( Feature - 6) -->
|
||||
<div class="ltn__feature-area section-bg-1 pt-115 pb-90 mb-120">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
<div class="section-title-area ltn__section-title-2 text-center">
|
||||
<h6 class="section-subtitle ltn__secondary-color">// features //</h6>
|
||||
<h1 class="section-title" style="color:#017BAA">Why Choose Us<span></span></h1>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row justify-content-center">
|
||||
<?php
|
||||
// Check if the ACF repeater field exists
|
||||
if( have_rows('objectives', 102) ) :
|
||||
// Loop through the repeater field
|
||||
while( have_rows('objectives', 102) ) : the_row(); ?>
|
||||
<div class="col-lg-4 col-sm-6 col-12">
|
||||
<div class="ltn__feature-item ltn__feature-item-7">
|
||||
<div class="ltn__feature-icon-title">
|
||||
<div class="ltn__feature-icon">
|
||||
<span><img src="<?php the_sub_field('image'); ?>" alt="#"></span>
|
||||
</div>
|
||||
<h3><a href="service-details.html"><?php the_sub_field('title'); ?></a></h3>
|
||||
</div>
|
||||
<div class="ltn__feature-info">
|
||||
<p><?php the_sub_field('description'); ?></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<?php endwhile; ?>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- FEATURE AREA END -->
|
||||
|
||||
<?php endwhile; ?>
|
||||
<?php include('footer.php'); ?>
|
Reference in New Issue
Block a user