]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-content/themes/twentyten/footer.php
Wordpress 3.0
[autoinstalls/wordpress.git] / wp-content / themes / twentyten / footer.php
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                                 <a href="<?php echo esc_url( __('http://wordpress.org/', 'twentyten') ); ?>"
34                                                 title="<?php esc_attr_e('Semantic Personal Publishing Platform', 'twentyten'); ?>" rel="generator">
35                                         <?php printf( __('Proudly powered by %s.', 'twentyten'), 'WordPress' ); ?>
36                                 </a>
37                         </div><!-- #site-generator -->
38
39                 </div><!-- #colophon -->
40         </div><!-- #footer -->
41
42 </div><!-- #wrapper -->
43
44 <?php
45         /* Always have wp_footer() just before the closing </body>
46          * tag of your theme, or you will break many plugins, which
47          * generally use this hook to reference JavaScript files.
48          */
49
50         wp_footer();
51 ?>
52 </body>
53 </html>