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