File: /storage/v6964/iskcon/public_html/wp-content/themes/tow-temple/footer.php
<?php
/**
* The template for displaying the footer
*
* Contains the closing of the #content div and all content after.
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package TOW
*/
global $tow_settings;
?>
<div class="footer_m position-relative">
<div class="footer_m1">
<section id="footer" class="p_4 bg_blue">
<div class="container-xl">
<div class="footer_1 row">
<?php if(check_setting($tow_settings['tow_footer_options'])){?>
<div class="col-md-4">
<div class="footer_1l">
<?php dynamic_sidebar( 'footer-section-1' ); ?>
</div>
</div>
<div class="col-md-2">
<div class="footer_1l">
<?php if(check_setting($tow_settings['tow_footer_options'])){?>
<h4 class="text-white mb-4"><?php print $tow_settings['tow_footer_options']['tow-header-top-section-2-heading'];?></h4>
<?php }?>
<div class="row footer_3ism">
<?php
if (check_setting($tow_settings['tow_footer_options'])) {
foreach ($tow_settings['tow_footer_options']['tow-footer_top_section_2_links'] as $key => $value) {
echo '<h6 class="col-md-12 col-6 mb-3"><i class="fa fa-chevron-right col_oran me-1 font_13 align-middle"></i> <a class="text-light a_tag" href="'.$value['url'].'"> '.$value['title'].'</a></h6>';
}
}
?>
</div>
</div>
</div>
<div class="col-md-2">
<div class="footer_1l">
<?php //dynamic_sidebar( 'footer-section-4' ); ?>
<h4 class="text-white mb-4"><?php print $tow_settings['tow_footer_options']['tow-header-top-section-3-heading'];?></h4>
<div class="row footer_3ism">
<?php
if (is_array($tow_settings['tow_footer_options']['tow-footer_top_section_3_links'] )) {
foreach ($tow_settings['tow_footer_options']['tow-footer_top_section_3_links'] as $key => $value) {
echo '<h6 class="col-md-12 col-6 mb-3"><i class="fa fa-chevron-right col_oran me-1 font_13 align-middle"></i> <a class="text-light a_tag" href="'.$value['url'].'"> '.$value['title'].'</a></h6>';
}
}
?>
</div>
</div>
</div>
<div class="col-md-4">
<div class="footer_1l">
<?php dynamic_sidebar( 'footer-section-4' ); ?>
</div>
</div>
<?php }?>
</div>
</div>
</section>
<section id="footer_b" class="bg_blue">
<div class="container-xl">
<div class="footer_b1 row">
<?php if(check_setting($tow_settings['tow_footer_options'])){?>
<div class="col-md-5">
<div class="footer_b1l">
<p class="mb-0 text-light"><?php print $tow_settings['tow_footer_options']['tow-footer-bottom-section-1-address'];?> | Design by <a class="col_oran fw-bold" href="https://www.templateonweb.com">TemplateOnWeb</a></p>
</div>
</div>
<div class="col-md-3">
<div class="footer_b1m p-2 bg-white text-center">
<a href="/"><img src="<?php if(check_setting($tow_settings['tow_general_options'])){print $tow_settings['tow_general_options']['site_logo'];}?>" class="img-fluid"></a>
</div>
</div>
<div class="col-md-4">
<div class="footer_b1r text-end">
<ul class="mb-0">
<?php if($tow_settings['tow_header_options']['tow-header-top-social-show']==1){
if (is_array($tow_settings['tow_social_options']['tow-social-links'] ))
{
foreach ($tow_settings['tow_social_options']['tow-social-links'] as $key => $value) {
echo '<li class="d-inline-block ms-2"><a class="d-block text-center" href="'.$value['url'].'"> <i class="'.$value['icon'].'"></i> </a></li>';
}
}
}
?>
</ul>
</div>
</div>
<?php }?>
</div>
</div>
</section>
</div>
</div>
<?php wp_footer(); ?>
</body>
</html>