2011-04-20 23:46:33 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2013-09-25 18:50:11 +02:00
|
|
|
* Template for displaying the footer
|
2011-05-02 23:04:44 +02:00
|
|
|
*
|
|
|
|
* Contains the closing of the id=main div and all content after
|
|
|
|
*
|
2011-04-20 23:46:33 +02:00
|
|
|
* @package WordPress
|
2011-05-18 21:06:09 +02:00
|
|
|
* @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
|
2013-10-09 22:39:09 +02:00
|
|
|
/*
|
2015-12-06 23:12:25 +01:00
|
|
|
* A sidebar in the footer? Yep. You can customize
|
2011-05-05 00:54:50 +02:00
|
|
|
* your footer with three columns of widgets.
|
|
|
|
*/
|
2011-11-19 05:16:39 +01:00
|
|
|
if ( ! is_404() )
|
|
|
|
get_sidebar( 'footer' );
|
2011-05-05 00:54:50 +02:00
|
|
|
?>
|
2011-04-26 20:34:52 +02:00
|
|
|
|
2011-04-20 23:46:33 +02:00
|
|
|
<div id="site-generator">
|
2011-05-18 19:32:22 +02:00
|
|
|
<?php do_action( 'twentyeleven_credits' ); ?>
|
2015-04-27 19:36:25 +02:00
|
|
|
<a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentyeleven' ) ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentyeleven' ); ?>"><?php printf( __( 'Proudly powered by %s', 'twentyeleven' ), 'WordPress' ); ?></a>
|
2011-04-20 23:46:33 +02:00
|
|
|
</div>
|
|
|
|
</footer><!-- #colophon -->
|
|
|
|
</div><!-- #page -->
|
|
|
|
|
|
|
|
<?php wp_footer(); ?>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|