forked from ColorlibHQ/Activello
-
Notifications
You must be signed in to change notification settings - Fork 1
/
footer.php
34 lines (31 loc) · 994 Bytes
/
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
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the #content div and all content after
*
* @package activello
*/
?>
</div><!-- close .*-inner (main-content or sidebar, depending if sidebar is used) -->
</div><!-- close .row -->
</div><!-- close .container -->
</div><!-- close .site-content -->
<div id="footer-area">
<footer id="colophon" class="site-footer" role="contentinfo">
<div class="site-info container">
<div class="row">
<?php if ( ! get_theme_mod( 'footer_social' ) ) { activello_social_icons();} ?>
<div class="copyright col-md-12">
<?php echo esc_html( get_theme_mod( 'activello_footer_copyright', 'Activello' ) ); ?>
<?php activello_footer_info(); ?>
</div>
</div>
</div><!-- .site-info -->
<button class="scroll-to-top"><i class="fa fa-angle-up"></i></button><!-- .scroll-to-top -->
</footer><!-- #colophon -->
</div>
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>