forked from rememberlenny/WooThemes-Canvas-Foundation-Zombie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
43 lines (34 loc) · 773 Bytes
/
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
<?php
/**
* Footer Template
*
* Here we setup all logic and XHTML that is required for the footer section of all screens.
*
* @package WooFramework
* @subpackage Template
*/
global $woo_options;
?>
<div id="footer" class="twelve">
<div class="row footWrap ">
<?php
woo_footer_top();
woo_footer_before();
?>
<?php woo_footer_inside(); ?>
<div id="copyright" class="col-left">
<?php woo_footer_left(); ?>
</div>
<div id="credit" class="col-right">
<?php woo_footer_right(); ?>
</div>
</div>
</div>
</div><!-- /#footer -->
<?php woo_footer_after(); ?>
</div><!-- /#wrapper -->
<div class="fix"></div><!--/.fix-->
<?php wp_footer(); ?>
<?php woo_foot(); ?>
</body>
</html>