2024-03-14 11:14:48 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Template Name: Value Details
|
|
|
|
*/
|
|
|
|
get_header(); ?>
|
|
|
|
<?php
|
|
|
|
while ( have_posts() ) :
|
|
|
|
the_post();?>
|
|
|
|
|
2024-03-12 13:59:46 +00:00
|
|
|
|
|
|
|
<!-- 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">
|
|
|
|
|
|
|
|
<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 -->
|
|
|
|
|
|
|
|
<!-- OUR HISTORY AREA START -->
|
|
|
|
<div class="ltn__our-history-area pb-100">
|
|
|
|
<div class="container">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-lg-12">
|
|
|
|
<div class="ltn__our-history-inner">
|
|
|
|
|
|
|
|
<div class="tab-content">
|
|
|
|
<div class="tab-pane fade active show" id="liton_tab_2_2">
|
|
|
|
<div class="ltn__product-tab-content-inner">
|
|
|
|
<div class="row">
|
2024-03-14 11:14:48 +00:00
|
|
|
<?php
|
|
|
|
if (have_rows('values_content', 442)) :
|
|
|
|
// Counter variable to keep track of the number of fields displayed
|
|
|
|
|
|
|
|
// Loop through the repeater field
|
|
|
|
while (have_rows('values_content', 442)) : the_row(); ?>
|
2024-03-12 13:59:46 +00:00
|
|
|
<div class="col-lg-6 align-self-center">
|
|
|
|
<div class="about-us-img-wrap about-img-left">
|
2024-03-14 11:14:48 +00:00
|
|
|
<img src="<?php the_sub_field('image')?>" alt="Image">
|
2024-03-12 13:59:46 +00:00
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
2024-03-14 11:14:48 +00:00
|
|
|
|
2024-03-12 13:59:46 +00:00
|
|
|
<div class="col-lg-6 align-self-center">
|
|
|
|
<div class="about-us-info-wrap">
|
2024-03-14 11:14:48 +00:00
|
|
|
<div class="section-title-area ltn__section-title-2 ">
|
2024-03-12 13:59:46 +00:00
|
|
|
|
2024-03-14 11:14:48 +00:00
|
|
|
<h3 class="section-title mt-80" style="color:#017BAA"><?php the_sub_field('title')?>
|
2024-03-12 13:59:46 +00:00
|
|
|
</h3>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
2024-03-14 11:14:48 +00:00
|
|
|
<p><?php the_sub_field('description')?></p>
|
2024-03-12 13:59:46 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2024-03-14 11:14:48 +00:00
|
|
|
|
|
|
|
<?php endwhile;
|
|
|
|
endif;?>
|
2024-03-12 13:59:46 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="ltn__tab-menu text-uppercase">
|
|
|
|
<div class="nav">
|
2024-03-14 11:14:48 +00:00
|
|
|
<a data-bs-toggle="tab">Relentless</a>
|
|
|
|
<a data-bs-toggle=" tab">Pirsuit</a>
|
2024-03-12 13:59:46 +00:00
|
|
|
<a data-bs-toggle="tab">Highest Standard</a>
|
|
|
|
<a data-bs-toggle="tab">Dedication</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!-- OUR HISTORY AREA END -->
|
|
|
|
|
2024-03-14 11:14:48 +00:00
|
|
|
<?php
|
|
|
|
endwhile;
|
|
|
|
include('footer.php'); ?>
|