1 | <?php |
2 | /** |
3 | * The template for displaying the footer. |
4 | * |
5 | * Contains the closing of the id=main div and all content |
6 | * after. Calls sidebar-footer.php for bottom widgets. |
7 | * |
8 | * @package WordPress |
9 | * @subpackage Twenty_Ten |
10 | * @since Twenty Ten 1.0 |
11 | */ |
12 | ?> |
13 | </div><!-- #main --> |
14 | |
15 | <div id="footer" role="contentinfo"> |
16 | <div id="colophon"> |
17 | |
18 | <?php |
19 | /* A sidebar in the footer? Yep. You can can customize |
20 | * your footer with four columns of widgets. |
21 | */ |
22 | get_sidebar( 'footer' ); |
23 | ?> |
24 | |
25 | <div id="site-info"> |
26 | <a href="<?php echo home_url( '/' ) ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"> |
27 | <?php bloginfo( 'name' ); ?> |
28 | </a> |
29 | </div><!-- #site-info --> |
30 | |
31 | <div id="site-generator"> |
32 | <?php do_action( 'twentyten_credits' ); ?> |
33 | |
34 | <a href="<?php echo esc_url( __('http://wordpress.org/', 'twentyten') ); ?>" |
35 | title="<?php esc_attr_e('Semantic Personal Publishing Platform', 'twentyten'); ?>" rel="generator"> |
36 | <?php printf( __('Proudly powered by %s.', 'twentyten'), 'WordPress' ); ?> |
37 | </a> |
38 | </div><!-- #site-generator --> |
39 | |
40 | </div><!-- #colophon --> |
41 | </div><!-- #footer --> |
42 | |
43 | </div><!-- #wrapper --> |
44 | |
45 | <?php |
46 | /* Always have wp_footer() just before the closing </body> |
47 | * tag of your theme, or you will break many plugins, which |
48 | * generally use this hook to reference JavaScript files. |
49 | */ |
50 | |
51 | wp_footer(); |
52 | ?> |
53 | </body> |
54 | </html> |
55 | |