-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathfooter.php
More file actions
29 lines (29 loc) · 821 Bytes
/
Copy pathfooter.php
File metadata and controls
29 lines (29 loc) · 821 Bytes
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
<div class="bigcontainer5">
<div class="container">
<div class="footer_widgets">
<?php if (function_exists('dynamic_sidebar') && dynamic_sidebar('footerwidgets') ) : ?><?php else : ?><?php endif; ?>
</div>
</div>
</div>
<div class="bigcontainer6">
<div class="container">
<footer class="footer" role="contentinfo">
<div id="inner-footer" class="wrap clearfix">
<div class="footer_credits">
© <?php echo date('Y'); ?> All Rights Reserved
</div>
<div class="footer_navigation">
<nav role="navigation">
<?php fundler_footer_links(); ?>
</nav>
</div>
<div class="footer_logo">
<?php bloginfo('name'); ?>
</div>
</div>
</footer>
</div>
</div>
<?php wp_footer(); ?>
</body>
</html>