Commit c87843db by rajshah

done block for quote

parent 6bf35d81
<!-- Seo - Quote Block Section -->
<?php
$quote = get_field('quote') ?: '';
if (!empty($quote)):
?>
<section class="AUDIT-QUOTE py-80">
<div class="container">
<div class="quote-content">
<img src="<?php echo get_parent_theme_file_uri() ?>/assets/img/quote.svg" alt="">
<h4 class="text-center"><?php echo $quote; ?></h4>
</div>
</div>
</section>
<?php endif; ?>
<!-- Seo - Quote Block Section -->
\ No newline at end of file
<section class="AUDIT-QUOTE py-80">
<div class="container">
<div class="quote-content">
<img src="<?php echo get_parent_theme_file_uri()?>/assets/img/quote.svg" alt="">
<h4 class="text-center">We’ve always aimed to do things a little differently at Buffer. Since the early days,
we’ve had a focus on
building one of the most unique and fulfilling workplaces by rethinking a lot of traditional practices.</h4>
</div>
</div>
</section>
\ No newline at end of file
<section class="AUDIT-TOOL-BOX SERVICE-LISTING py-80 mt-80">
<div class="container">
<div class="top-title section-title">
<h2>Services we provide in Content Marketing</h2>
<p>Our swift-paced team is capable of handling design projects on anywhere and anytime. We’re ready to deliver
your best product wherever you are!</p>
</div>
<div class="row">
<?php
$services = array_fill(0, 6, []);
foreach ($services as $service) {
?>
<div class="col-md-6 col-xl-4">
<div class="service-item">
<div class="si-icon">
<img src="<?php echo get_parent_theme_file_uri()?>/assets/img/service-detail-01.svg" alt="">
</div>
<div class="si-content">
<strong>Strategy Development</strong>
<p>We design a custom content strategy that aligns with your business objectives, target audience, and
industry trends.</p>
</div>
</div>
</div>
<?php
}
?>
</div>
</div>
</section>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment