2011-04-20 17:46:33 -04:00
|
|
|
<?php
|
|
|
|
/**
|
2011-05-02 17:04:44 -04:00
|
|
|
* The template for displaying the footer.
|
|
|
|
*
|
|
|
|
* Contains the closing of the id=main div and all content after
|
|
|
|
*
|
2011-04-20 17:46:33 -04:00
|
|
|
* @package WordPress
|
2011-05-18 15:06:09 -04:00
|
|
|
* @subpackage Twenty_Eleven
|
2011-05-02 17:04:44 -04:00
|
|
|
* @since Twenty Eleven 1.0
|
2011-04-20 17:46:33 -04:00
|
|
|
*/
|
|
|
|
?>
|
|
|
|
|
|
|
|
</div><!-- #main -->
|
|
|
|
|
|
|
|
<footer id="colophon" role="contentinfo">
|
2011-04-26 14:34:52 -04:00
|
|
|
|
2011-05-04 18:54:50 -04:00
|
|
|
<?php
|
|
|
|
/* A sidebar in the footer? Yep. You can can customize
|
|
|
|
* your footer with three columns of widgets.
|
|
|
|
*/
|
2011-11-18 23:16:39 -05:00
|
|
|
if ( ! is_404() )
|
|
|
|
get_sidebar( 'footer' );
|
2011-05-04 18:54:50 -04:00
|
|
|
?>
|
2011-04-26 14:34:52 -04:00
|
|
|
|
2011-04-20 17:46:33 -04:00
|
|
|
<div id="site-generator">
|
2011-05-18 13:32:22 -04:00
|
|
|
<?php do_action( 'twentyeleven_credits' ); ?>
|
2011-05-18 13:38:42 -04:00
|
|
|
<a href="<?php echo esc_url( __( 'http://wordpress.org/', 'twentyeleven' ) ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentyeleven' ); ?>" rel="generator"><?php printf( __( 'Proudly powered by %s', 'twentyeleven' ), 'WordPress' ); ?></a>
|
2011-04-20 17:46:33 -04:00
|
|
|
</div>
|
|
|
|
</footer><!-- #colophon -->
|
|
|
|
</div><!-- #page -->
|
|
|
|
|
|
|
|
<?php wp_footer(); ?>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|