forked from CCI-MOC/moc-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
39 lines (35 loc) · 1.9 KB
/
footer.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php $redux_ThemeTek = get_option( 'redux_ThemeTek' ); ?>
</div>
<footer id="footer" class="<?php if (isset($redux_ThemeTek['tek-footer-fixed'])) { if ($redux_ThemeTek['tek-footer-fixed'] == '1') { echo esc_html('fixed'); } else { echo esc_html('classic');} } ?>">
<?php get_sidebar( 'footer' ); ?>
<div class="lower-footer">
<div class="container">
<div class="pull-left">
<span><?php echo isset($redux_ThemeTek['tek-footer-text']) ? $redux_ThemeTek['tek-footer-text'] : '© Etalon by KeyDesign. All rights reserved'; ?></span>
</div>
<div class="pull-right">
<?php if ( has_nav_menu( 'keydesign-footer-menu' ) ) {
wp_nav_menu( array( 'theme_location' => 'keydesign-footer-menu', 'menu' => 'Footer Menu', 'depth' => 1, 'container' => false, 'menu_class' => 'nav navbar-footer', 'fallback_cb' => 'false' ) );
}
?>
</div>
</div>
</div>
</footer>
<?php /* Back to top button template */ ?>
<?php if (isset($redux_ThemeTek['tek-backtotop']) && $redux_ThemeTek['tek-backtotop'] == "1") : ?>
<div class="back-to-top">
<i class="fa fa-angle-up"></i>
</div>
<?php endif; ?>
<?php /* END Back to top button template */ ?>
<?php /* Contact Modal template */ ?>
<?php if (isset($redux_ThemeTek['tek-header-button'])) : ?>
<?php if ($redux_ThemeTek['tek-header-button'] && ($redux_ThemeTek['tek-header-button-action'] == '1')) : ?>
<?php get_template_part( 'core/templates/header/content', 'contact-modal' ); ?>
<?php endif; ?>
<?php endif; ?>
<?php /* END Contact Modal template */ ?>
<?php wp_footer(); ?>
</body>
</html>