forked from arnabwahid/wordpress-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
43 lines (31 loc) · 1.75 KB
/
Copy pathfooter.php
File metadata and controls
43 lines (31 loc) · 1.75 KB
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
<footer role="contentinfo" >
<div id="nextgen-footer-logo" class="pull-right hidden-phone">
<img src="<?php bloginfo('template_directory'); ?>/images/ngd_logo.png"/>
</div>
<div id="inner-footer" class="clearfix">
<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 hidden-phone">
<a href="https://www.facebook.com/NextGenerationDevelopment" id="facebook"><img src="<?php bloginfo('template_directory'); ?>/images/facebook.png" style="width: 35px"/></a>
<a href="http://us.linkedin.com/company/next-generation-development-llc" id="linkedin"><img src="<?php bloginfo('template_directory'); ?>/images/linkedin.png" style="width: 35px"/></a>
</p>
<p class="attribution hidden-phone">© 2013 Next Generation Development. All rights reserved.</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>