<?php
/**
 * @package Delicacy
 */
?>

<div id="sidebar">

	<?php do_action( 'before_sidebar' ); ?>

    <?php if ( dynamic_sidebar( 'primary-sidebar' ) ) : else : ?>

        <!-- All this stuff in here only shows up if you DON'T have any widgets active in this zone -->
		<div class="widget">
			<h3><?php _e( 'Archives', 'delicacy' ); ?></h3>
			<ul>
				<?php wp_get_archives( 'type=monthly' ); ?>
			</ul>
        </div>
		<div class="widget">
			<h3><?php _e( 'Meta', 'delicacy' ); ?></h3>
		    <ul>
				<?php wp_register(); ?>
            	<li><?php wp_loginout(); ?></li>
            	<?php wp_meta(); ?>
            </ul>
		</div>
	<?php endif; ?>

</div>