File: /www/wwwroot/aiwellbore.com/wp-content/updraft/themes-old/study-education-pro/template-contact.php
<?php
/**
Template name: Contact Us
* The template for displaying all pages.
*
* This is the template that displays all pages by default.
* Please note that this is the WordPress construct of pages
* and that other 'pages' on your WordPress site will use a
* different template.
*
* @package Study Education Pro
*/
get_header();
?>
<div class="content-area">
<div class="middle-align">
<div class="site-main sitefull">
<header class="entry-header">
<h1 class="entry-title"><?php the_title(); ?></h1>
</header><!-- .entry-header -->
<?php $footer_google_map = get_theme_mod('footer_google_map'); ?>
<iframe src=<?php echo $footer_google_map; ?> width=98% height=300 frameborder=0></iframe>
<div class="contact_left">
<?php while (have_posts()) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; // end of the loop. ?>
</div><!-- .contact_left -->
<div class="contact_right">
<?php $footer_contact_title = get_theme_mod('footer_contact_title'); ?>
<?php if (!dynamic_sidebar('sidebar-contact')) : ?>
<h3 class="widget-title"><?php echo $footer_contact_title; ?></h3>
<aside id="skills" class="widget">
<div class="contactdetail">
<!--footer contact address start-->
<?php
if (get_theme_mod('footer_contact_address1')) {
?>
<p> <i class="fa fa-map-marker"></i><?php
echo get_theme_mod('footer_contact_address1');
?></p><?php
}
?>
<!--footer contact address end-->
<!--footer contact phone start-->
<?php
if (get_theme_mod('footer_contact_phone_number')) {
?>
<p> <i class="fa fa-phone"></i><?php
echo get_theme_mod('footer_contact_phone_number');
?></p><?php
}
?>
<!--footer contact phone end-->
<!--footer contact phone start-->
<?php
$footer_contact_email = get_theme_mod('footer_contact_email');
if (!empty($footer_contact_email)) {
?>
<p> <i class="fa fa-envelope"></i>
<?php echo '<a title="' . esc_html($footer_contact_email) . '" href="mailto:' . esc_html($footer_contact_email) . '">' . esc_html($footer_contact_email) . '</a>'; ?>
</p><?php
}
?>
<!--footer contact phone end-->
<!--footer contact phone start-->
<?php
if (get_theme_mod('footer_contact_url')) {
?>
<p> <i class="fa fa-envelope"></i><?php
echo get_theme_mod('footer_contact_url');
?></p><?php
}
?>
<!--footer contact phone end-->
</div>
<?php
if (get_theme_mod('footersocialicons')) {
echo do_shortcode(get_theme_mod('footersocialicons'));
}
?>
</aside>
<?php endif; // end sidebar widget area ?>
</div><!-- .contact_right -->
<div class="clear"></div>
</div>
<div class="clear"></div>
</div>
</div>
<?php get_footer(); ?>