-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
58 lines (48 loc) · 1.36 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
<?php
/**
* The template for displaying the footer.
*
* @package YIKES Starter
*/
?>
<footer id="colophon" class="site-footer" role="contentinfo">
<h2 class="screen-reader-text">Footer</h2>
<div class="top-footer">
<div class="container">
<div class="row footer-widgets">
<div class="col-md-3 footer-col first">
<?php dynamic_sidebar( 'footer-1' ); ?>
</div>
<div class="col-md-3 footer-col">
<?php dynamic_sidebar( 'footer-2' ); ?>
</div>
<div class="col-md-3 footer-col">
<?php dynamic_sidebar( 'footer-3' ); ?>
</div>
<div class="col-md-3 footer-col">
<?php dynamic_sidebar( 'footer-4' ); ?>
</div>
</div>
</div>
</div><!-- .top-footer -->
<div class="bottom-footer">
<div class="container">
<div class="row">
<div class="col credits">
<h3 id="copyright-information" class="screen-reader-text">Copyright Information</h3>
<?php dynamic_sidebar( 'subfooter-1' ); ?>
</div>
</div><!-- .row -->
</div><!-- .container -->
</div><!-- .bottom-footer -->
</footer><!-- #colophon -->
<?php wp_footer(); ?>
<!--
If you're reading this source code, hi!
Everything can be found at the following URLs:
Theme - https://github.com/lezwatch/lwtv-underscores
Plugin - https://github.com/lezwatch/lwtv-plugin
You're welcome to fork our code and make your own site with it.
-->
</body>
</html>