2011-04-20 23:46:33 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Twenty Eleven
|
|
|
|
*/
|
|
|
|
?>
|
|
|
|
|
|
|
|
</div><!-- #main -->
|
|
|
|
|
|
|
|
<footer id="colophon" role="contentinfo">
|
2011-04-26 20:34:52 +02:00
|
|
|
|
2011-04-20 23:46:33 +02:00
|
|
|
<?php if ( is_active_sidebar( 'sidebar-3' ) || is_active_sidebar( 'sidebar-4' ) || is_active_sidebar( 'sidebar-5' ) ) : ?>
|
|
|
|
<div id="supplementary" <?php twentyeleven_footer_sidebar_class(); ?>>
|
|
|
|
<?php if ( is_active_sidebar( 'sidebar-3' ) ) : ?>
|
|
|
|
<div id="first" class="widget-area" role="complementary">
|
|
|
|
<?php dynamic_sidebar( 'sidebar-3' ); ?>
|
|
|
|
</div><!-- #first .widget-area -->
|
2011-04-26 20:34:52 +02:00
|
|
|
<?php endif; ?>
|
2011-04-20 23:46:33 +02:00
|
|
|
|
|
|
|
<?php if ( is_active_sidebar( 'sidebar-4' ) ) : ?>
|
|
|
|
<div id="second" class="widget-area" role="complementary">
|
|
|
|
<?php dynamic_sidebar( 'sidebar-4' ); ?>
|
|
|
|
</div><!-- #second .widget-area -->
|
2011-04-26 20:34:52 +02:00
|
|
|
<?php endif; ?>
|
2011-04-20 23:46:33 +02:00
|
|
|
|
|
|
|
<?php if ( is_active_sidebar( 'sidebar-5' ) ) : ?>
|
|
|
|
<div id="third" class="widget-area" role="complementary">
|
|
|
|
<?php dynamic_sidebar( 'sidebar-5' ); ?>
|
|
|
|
</div><!-- #third .widget-area -->
|
2011-04-26 20:34:52 +02:00
|
|
|
<?php endif; ?>
|
2011-04-20 23:46:33 +02:00
|
|
|
</div><!-- #supplementary -->
|
|
|
|
<?php endif; ?>
|
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>
|