File: /home/mmickelson/theflexguys.com/baronconstruct/wp-content/themes/sweet-blossoms/sidebar.php
<!-- subcontent ................................. -->
<div id="side">
<?php if ( ! dynamic_sidebar( 'sidebar' ) ) {
	if ( is_home() || is_page() || is_single() || is_page( "archives" ) || is_archive() || is_search() ) { ?>
	<?php get_search_form(); ?>
	<h3><em><?php _e( 'Pages', 'sweet-blossoms' ); ?></em></h3>
	<ul>
		<li<?php if ( is_home() ) echo " class=\"selected\""; ?>><a href="<?php bloginfo('url'); ?>"><?php _e( 'Home' , 'sweet-blossoms' ); ?></a></li>
		 <?php wp_list_pages('depth=-1&title_li='); ?>
	</ul>
	<h3><em><?php _e( 'Categories', 'sweet-blossoms' ); ?></em></h3>
	<ul class="categories">
	 <?php wp_list_categories( 'orderby=name&title_li=' ); ?>
	</ul>
<?php if(!is_single()) { ?>
	<h3><em><?php _e( 'Links', 'sweet-blossoms' ); ?></em></h3>
	<ul class="links">
	<?php wp_list_bookmarks('categorize=0&title_li='); ?>
	</ul>
	<h3><em><?php _e( 'Meta', 'sweet-blossoms' ); ?></em></h3>
	<ul class="meta">
	<li><?php wp_loginout(); ?></li>
	<li><a href="<?php bloginfo_rss( 'rss2_url' ); ?> "><?php _e( 'Entries (RSS)', 'sweet-blossoms' ); ?></a></li>
	<li><a href="<?php bloginfo_rss( 'comments_rss2_url' ); ?> "><?php _e( 'Comments (RSS)', 'sweet-blossoms' ); ?></a></li>
	</ul>
<?php } ?>
<?php } ?>
<?php if ( is_single() || is_page() || is_home() ) { ?>
	<h3><em><?php _e( 'Calendar', 'sweet-blossoms' ); ?></em></h3>
	<?php get_calendar() ?>
	<h3><em><?php _e( 'Most Recent Posts', 'sweet-blossoms' ); ?></em></h3>
	<ul class="posts">
		<?php	$recent_posts = wp_get_recent_posts();
		foreach( $recent_posts as $post ){
			echo '<li><a href="' . get_permalink($post["ID"]) . '" title="'.$post["post_title"].'" >' .   $post["post_title"].'</a> </li> ';
	}
	?>
	</ul>
<?php } ?>
<?php if ( is_page("archives") || is_archive() || is_search() ) { ?>
	<h3><em><?php _e( 'Calendar', 'sweet-blossoms' ); ?></em></h3>
	<?php get_calendar(); ?>
	<?php if ( ! is_page( "archives" ) ) { ?>
		<h3><em><?php _e( 'Posts by Month', 'sweet-blossoms' ); ?></em></h3>
		<ul class="months">
		<?php get_archives('monthly','','','<li>','</li>',''); ?>
		</ul>
	<?php } ?>
	<h3><em><?php _e( 'Posts by Category', 'sweet-blossoms' ); ?></em></h3>
	<ul class="categories">
	<?php wp_list_categories( 'orderby=name' ); ?>
	</ul>
<?php } } ?>
</div> <!-- /subcontent -->