forked from noahbass/sass-wordpress-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
37 lines (26 loc) · 1.39 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
<footer role="contentinfo">
<div id="inner-footer" class="clearfix">
<hr />
<div id="widget-footer" class="clearfix row-fluid">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('footer1') ) : ?>
<?php endif; ?>
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('footer2') ) : ?>
<?php endif; ?>
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('footer3') ) : ?>
<?php endif; ?>
</div>
<nav class="clearfix">
<?php bones_footer_links(); // Adjust using Menus in Wordpress Admin ?>
</nav>
<p class="pull-right muted">Mashing together <a href="https://github.com/jlong/sass-twitter-bootstrap">Sass Twitter Bootstrap</a> and <a href="http://320press.com/wpbs">WordPress Bootstrap</a>.</p>
<p class="attribution muted">© <?php bloginfo('name'); ?></p>
</div> <!-- end #inner-footer -->
</footer> <!-- end footer -->
</div> <!-- end #container -->
<!--[if lt IE 7 ]>
<script src="//ajax.googleapis.com/ajax/libs/chrome-frame/1.0.3/CFInstall.min.js"></script>
<script>window.attachEvent('onload',function(){CFInstall.check({mode:'overlay'})})</script>
<![endif]-->
<?php wp_footer(); // js scripts are inserted using this function ?>
</body>
</html>