-
Notifications
You must be signed in to change notification settings - Fork 136
/
footer.php
executable file
·38 lines (34 loc) · 1.01 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
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the #content div and all content after
*
* @package dazzling
*/
?>
</div><!-- close .row -->
</div><!-- close .container -->
</div><!-- close .site-content -->
<div id="footer-area">
<div class="container footer-inner">
<?php get_sidebar( 'footer' ); ?>
</div>
<footer id="colophon" class="site-footer" role="contentinfo">
<div class="site-info container">
<?php if( of_get_option('footer_social') ) dazzling_social_icons(); ?>
<nav role="navigation" class="col-md-6">
<?php dazzling_footer_links(); ?>
</nav>
<div class="copyright col-md-6">
<?php echo of_get_option( 'custom_footer_text', 'dazzling' ); ?>
<?php dazzling_footer_info(); ?>
</div>
</div><!-- .site-info -->
<div class="scroll-to-top"><i class="fa fa-angle-up"></i></div><!-- .scroll-to-top -->
</footer><!-- #colophon -->
</div>
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>