-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathfooter.php
68 lines (49 loc) · 1.26 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the #content div and all content after
*
* @package Polmo
*/
?>
</div><!-- /.row -->
</div><!-- /.container -->
</section><!-- /#main-content -->
<!-- Footer Section -->
<footer id="colophon" class="footer site-footer" role="contentinfo">
<div class="footer-top">
<div class="section-padding">
<div class="container">
<div class="row">
<?php
if ( is_active_sidebar( 'footer-sidebar' ) ) {
dynamic_sidebar('footer-sidebar');
} else{
get_sidebar();
}
?>
</div><!-- /.row -->
</div><!-- /.container -->
</div><!-- /.section-padding -->
</div><!-- /.footer-top -->
<div class="footer-bottom">
<div class="container">
<?php echo polmo_lite_footer_credit();?>
<div class="footer-menu float-right">
<?php if ( is_active_sidebar( 'footer-menu' ) ) {
dynamic_sidebar('footer-menu');
} ?>
</div><!-- /.footer-menu -->
</div><!-- /.container -->
</div><!-- /.footer-bottom -->
</footer><!-- /#colophon -->
<!-- Footer Section -->
<div id="scroll-to-top" class="scroll-to-top">
<span>
<i class="fa fa-chevron-up"></i>
</span>
</div><!-- /#scroll-to-top -->
<?php wp_footer(); ?>
</body>
</html>