Advertisement
likoma

footer

May 12th, 2012
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. <?php
  2.  
  3. /**
  4.  
  5. * Footer Template
  6.  
  7. *
  8.  
  9. * Here we setup all logic and XHTML that is required for the footer section of all screens.
  10.  
  11. *
  12.  
  13. * @package WooFramework
  14.  
  15. * @subpackage Template
  16.  
  17. */
  18.  
  19.  
  20.  
  21. global $woo_options;
  22.  
  23.  
  24.  
  25. woo_footer_top();
  26.  
  27. woo_footer_before();
  28.  
  29. ?>
  30.  
  31. <div id="footer" class="col-full">
  32.  
  33.  
  34.  
  35. <?php woo_footer_inside(); ?>
  36.  
  37.  
  38.  
  39. <div id="copyright" class="col-left">
  40.  
  41. <?php woo_footer_left(); ?>
  42.  
  43. </div>
  44.  
  45.  
  46.  
  47. <div id="credit" class="col-right">
  48.  
  49. <?php woo_footer_right(); ?>
  50.  
  51. </div>
  52.  
  53.  
  54.  
  55. </div><!-- /#footer -->
  56.  
  57.  
  58.  
  59. <?php woo_footer_after(); ?>
  60.  
  61.  
  62.  
  63. </div><!-- /#wrapper -->
  64.  
  65.  
  66.  
  67. <div class="fix"></div><!--/.fix-->
  68.  
  69.  
  70.  
  71. <?php wp_footer(); ?>
  72.  
  73. <?php woo_foot(); ?>
  74.  
  75. </body>
  76.  
  77. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement