]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-content/themes/twentyfourteen/sidebar.php
WordPress 4.2.1
[autoinstalls/wordpress.git] / wp-content / themes / twentyfourteen / sidebar.php
1 <?php
2 /**
3  * The Sidebar containing the main widget area
4  *
5  * @package WordPress
6  * @subpackage Twenty_Fourteen
7  * @since Twenty Fourteen 1.0
8  */
9 ?>
10 <div id="secondary">
11         <?php
12                 $description = get_bloginfo( 'description', 'display' );
13                 if ( ! empty ( $description ) ) :
14         ?>
15         <h2 class="site-description"><?php echo esc_html( $description ); ?></h2>
16         <?php endif; ?>
17
18         <?php if ( has_nav_menu( 'secondary' ) ) : ?>
19         <nav role="navigation" class="navigation site-navigation secondary-navigation">
20                 <?php wp_nav_menu( array( 'theme_location' => 'secondary' ) ); ?>
21         </nav>
22         <?php endif; ?>
23
24         <?php if ( is_active_sidebar( 'sidebar-1' ) ) : ?>
25         <div id="primary-sidebar" class="primary-sidebar widget-area" role="complementary">
26                 <?php dynamic_sidebar( 'sidebar-1' ); ?>
27         </div><!-- #primary-sidebar -->
28         <?php endif; ?>
29 </div><!-- #secondary -->