2013-07-29 00:55:10 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2013-08-20 19:53:09 +02:00
|
|
|
* The Sidebar containing the main widget area.
|
2013-07-29 00:55:10 +02:00
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Twenty_Fourteen
|
|
|
|
*/
|
2013-08-22 20:06:09 +02:00
|
|
|
|
2013-10-11 05:17:11 +02:00
|
|
|
if ( ! is_active_sidebar( 'sidebar-3' ) )
|
2013-08-20 19:53:09 +02:00
|
|
|
return;
|
2013-07-29 00:55:10 +02:00
|
|
|
?>
|
2013-08-20 19:53:09 +02:00
|
|
|
|
2013-08-22 20:06:09 +02:00
|
|
|
<div id="supplementary">
|
2013-10-11 05:17:11 +02:00
|
|
|
<div id="footer-sidebar" class="footer-sidebar widget-area" role="complementary">
|
|
|
|
<?php dynamic_sidebar( 'sidebar-3' ); ?>
|
2013-08-20 19:53:09 +02:00
|
|
|
</div><!-- #footer-sidebar -->
|
2013-07-29 00:55:10 +02:00
|
|
|
</div><!-- #supplementary -->
|