2011-04-20 23:46:33 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2011-05-02 23:04:44 +02:00
|
|
|
* The template for displaying the footer.
|
|
|
|
*
|
|
|
|
* Contains the closing of the id=main div and all content after
|
|
|
|
*
|
2011-04-20 23:46:33 +02:00
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Twenty Eleven
|
2011-05-02 23:04:44 +02:00
|
|
|
* @since Twenty Eleven 1.0
|
2011-04-20 23:46:33 +02:00
|
|
|
*/
|
|
|
|
?>
|
|
|
|
|
|
|
|
</div><!-- #main -->
|
|
|
|
|
|
|
|
<footer id="colophon" role="contentinfo">
|
2011-04-26 20:34:52 +02:00
|
|
|
|
2011-05-05 00:54:50 +02:00
|
|
|
<?php
|
|
|
|
/* A sidebar in the footer? Yep. You can can customize
|
|
|
|
* your footer with three columns of widgets.
|
|
|
|
*/
|
|
|
|
get_sidebar( 'footer' );
|
|
|
|
?>
|
2011-04-26 20:34:52 +02:00
|
|
|
|
2011-04-20 23:46:33 +02:00
|
|
|
<div id="site-generator">
|
|
|
|
<a href="http://wordpress.org/" rel="generator">Proudly powered by WordPress</a><span class="sep"> | </span><?php printf( __( 'Theme: %1$s.', 'twentyeleven' ), 'Twenty Eleven' ); ?>
|
|
|
|
</div>
|
|
|
|
</footer><!-- #colophon -->
|
|
|
|
</div><!-- #page -->
|
|
|
|
|
|
|
|
<?php wp_footer(); ?>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|