blob: 90b877c9a5ed379469aff828001b100e4d2792dc (
plain)
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
|
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the id=main div and all content
* after. Calls sidebar-footer.php for bottom widgets.
*
* @package Cryout Creations
* @subpackage mantra
* @since mantra 0.5
*/
?> <div style="clear:both;"></div>
</div> <!-- #forbottom -->
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<div id="colophon">
<?php get_sidebar( 'footer' );?>
</div><!-- #colophon -->
<div id="footer2">
<?php cryout_footer_hook(); ?>
</div><!-- #footer2 -->
</footer><!-- #footer -->
</div><!-- #wrapper -->
<?php wp_footer(); ?>
</body>
</html>
|