2013-02-19 00:08:56 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* The sidebar containing the footer widget area.
|
|
|
|
*
|
|
|
|
* If no active widgets in this sidebar, it will be hidden completely.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Twenty_Thirteen
|
|
|
|
* @since Twenty Thirteen 1.0
|
|
|
|
*/
|
|
|
|
|
2013-02-28 22:35:26 +01:00
|
|
|
if ( is_active_sidebar( 'sidebar-1' ) ) : ?>
|
|
|
|
<div id="secondary" class="sidebar-container" role="complementary">
|
2013-02-19 00:08:56 +01:00
|
|
|
<div class="widget-area">
|
2013-02-28 22:35:26 +01:00
|
|
|
<?php dynamic_sidebar( 'sidebar-1' ); ?>
|
2013-03-19 20:25:56 +01:00
|
|
|
</div><!-- .widget-area -->
|
2013-02-28 22:35:26 +01:00
|
|
|
</div><!-- #secondary -->
|
2013-02-19 00:08:56 +01:00
|
|
|
<?php endif; ?>
|