Sha256: 10ff9ffe2f7ea0cf001d062ea25c223a0035c949ac1c6eab5212a9d6ceabf1d0

Contents?: true

Size: 848 Bytes

Versions: 5

Compression:

Stored size: 848 Bytes

Contents

<?php
/**
 * The Sidebar containing the main widget area
 *
 * @package WordPress
 * @subpackage Twenty_Fourteen
 * @since Twenty Fourteen 1.0
 */
?>
<div id="secondary">
	<?php
		$description = get_bloginfo( 'description', 'display' );
		if ( ! empty ( $description ) ) :
	?>
	<h2 class="site-description"><?php echo esc_html( $description ); ?></h2>
	<?php endif; ?>

	<?php if ( has_nav_menu( 'secondary' ) ) : ?>
	<nav role="navigation" class="navigation site-navigation secondary-navigation">
		<?php wp_nav_menu( array( 'theme_location' => 'secondary' ) ); ?>
	</nav>
	<?php endif; ?>

	<?php if ( is_active_sidebar( 'sidebar-1' ) ) : ?>
	<div id="primary-sidebar" class="primary-sidebar widget-area" role="complementary">
		<?php dynamic_sidebar( 'sidebar-1' ); ?>
	</div><!-- #primary-sidebar -->
	<?php endif; ?>
</div><!-- #secondary -->

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
boot-cli-1.0.0 lib/templates/wordpress/wp-content/themes/twentyfourteen/sidebar.php
boot-cli-0.3.1 lib/templates/wordpress/wp-content/themes/twentyfourteen/sidebar.php
boot-cli-0.3.0 lib/templates/wordpress/wp-content/themes/twentyfourteen/sidebar.php
stump-cli-0.1.2 lib/wp/wp-content/themes/twentyfourteen/sidebar.php
stump-cli-0.1.1 lib/wp/wp-content/themes/twentyfourteen/sidebar.php