HEX
Server: Apache/2.4.41 (Amazon) OpenSSL/1.0.2k-fips PHP/5.6.40
System: Linux ip-172-31-40-18 4.14.146-93.123.amzn1.x86_64 #1 SMP Tue Sep 24 00:45:23 UTC 2019 x86_64
User: apache (48)
PHP: 5.6.40
Disabled: NONE
Upload Files
File: /var/www/html/qcr24/wp-content/themes/syscentric/Page-Templates/template-contact.php
<?php
/*
Template Name: Contact Us
*/
get_header();
?>

<!--=================================
Contat Form -->
<section class="space-ptb">
    <div class="container">
    <div class="row justify-content-center">
        <div class="col-lg-8">
        <div class="section-title text-center">
            <h1><?php echo get_field('banner_title'); ?></h1>
            <p><?php echo get_field('banner_subtitle'); ?></p>
        </div>
        </div>
    </div>
    <div class="row justify-content-lg-around position-relative pt-5">
        <div class="col-lg-4 col-md-5 mb-4">
        <div class="is-sticky">
            <h4 class="mb-4"><?php echo get_field('enquiry_title'); ?></h4>
            <h5 class="text-light"><?php echo get_field('enquiry_subtitle'); ?></h5>
        </div>
        </div>
        <div class="col-lg-7 col-md-7 pr-lg-5">
        <div class="p-4 p-md-5 bg-white shadow">
            <h3>Need assistance? please fill the form</h3>
            <?php echo do_shortcode('[contact-form-7 id="275" title="Contact Us" html_class="mt-4"]'); ?>            
        </div>
        </div>
        <div class="contact-bg-logo">
        <i class="fas fa-comment"></i>
        </div>
    </div>
    </div>
</section>
<!--=================================
Contat Form  -->

<!--=================================
Contat Form info -->
<section class="space-pb">
    <div class="container">
    <div class="row justify-content-lg-around">
        <div class="col-lg-4 col-md-5 mb-4">
        <div class="is-sticky">
            <div class="section-title">
            <h2><?php echo get_field('business_title'); ?></h2>
            </div>
            <a href="#" class="btn btn-light-round btn-round">Get Direction<i class="fas fa-arrow-right pl-3"></i></a>
        </div>
        </div>
        <div class="col-lg-7 col-md-7 pr-lg-5">
            <div class="row">
                <?php if( have_rows('business_list') ): ?>
					
                    <?php while( have_rows('business_list') ): the_row(); 
                        $business_image = get_sub_field('business_image');
                        $business_country = get_sub_field('business_country');
                        $business_country_address = get_sub_field('business_country_address');
                    ?>
                        <div class="col-sm-6 mb-4 mb-md-5">
                            <img class="img-fluid mb-4" src="<?php echo $business_image; ?>" alt="">
                            <h4><?php echo $business_country; ?></h4>
                            <h6 class="text-light mb-0"><?php echo $business_country_address; ?></h6>
                        </div>
                    <?php endwhile; ?>
                    
                <?php endif; ?>
            </div>
        </div>
        <div class="col-lg-7 col-md-7 pr-lg-5">
        <div class="row">
            
            <!--<div class="col-sm-6 mb-4 mb-md-5">
            <img class="img-fluid mb-4" src="images/about/map-lacation-img2.png" alt="">
            <h4>USA</h4>
            <h6 class="text-light mb-0">USA street state Test 529426</h6>
            </div>-->
        </div>
        </div>
    </div>
    </div>
</section>
<!--=================================
Contat Form info-->

<?php
get_footer();
?>