forked from ColorlibHQ/Sparkling
-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
45 lines (41 loc) · 1.07 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
40
41
42
43
44
45
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the #content div and all content after
*
* @package sparkling
*/
?>
</div><!-- close .row -->
</div><!-- close .container -->
</div><!-- close .site-content -->
<div id="footer-area">
<div class="container footer-inner">
<div class="row">
<?php get_sidebar( 'footer' ); ?>
</div>
</div>
<footer id="colophon" class="site-footer" role="contentinfo">
<div class="site-info container">
<div class="row">
<?php
if ( of_get_option( 'footer_social' ) ) {
sparkling_social_icons();}
?>
<nav role="navigation" class="col-md-6">
<?php sparkling_footer_links(); ?>
</nav>
<div class="copyright col-md-6">
<?php echo of_get_option( 'custom_footer_text', 'sparkling' ); ?>
<?php sparkling_footer_info(); ?>
</div>
</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>