This repository has been archived on 2020-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
2012-01-07 03:25:13 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* The Sidebar containing the main widget areas.
|
|
|
|
*
|
|
|
|
* @package _s
|
|
|
|
* @since _s 1.0
|
|
|
|
*/
|
|
|
|
?>
|
|
|
|
<div id="secondary" class="widget-area" role="complementary">
|
|
|
|
<?php do_action( 'before_sidebar' ); ?>
|
|
|
|
<?php if ( ! dynamic_sidebar( 'sidebar-1' ) ) : ?>
|
|
|
|
|
|
|
|
<aside id="search" class="widget widget_search">
|
|
|
|
<?php get_search_form(); ?>
|
|
|
|
</aside>
|
|
|
|
|
|
|
|
<aside id="archives" class="widget">
|
|
|
|
<h1 class="widget-title"><?php _e( 'Archives', '_s' ); ?></h1>
|
|
|
|
<ul>
|
|
|
|
<?php wp_get_archives( array( 'type' => 'monthly' ) ); ?>
|
|
|
|
</ul>
|
|
|
|
</aside>
|
|
|
|
|
|
|
|
<aside id="meta" class="widget">
|
|
|
|
<h1 class="widget-title"><?php _e( 'Meta', '_s' ); ?></h1>
|
|
|
|
<ul>
|
|
|
|
<?php wp_register(); ?>
|
|
|
|
<aside><?php wp_loginout(); ?></aside>
|
|
|
|
<?php wp_meta(); ?>
|
|
|
|
</ul>
|
|
|
|
</aside>
|
|
|
|
|
|
|
|
<?php endif; // end sidebar widget area ?>
|
2012-01-23 17:59:27 +00:00
|
|
|
</div><!-- #secondary .widget-area -->
|