2009-06-13 11:58:02 +00:00
|
|
|
<div id="sidebar">
|
|
|
|
<ul>
|
2009-07-15 22:36:40 +00:00
|
|
|
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) { ?>
|
2009-06-13 11:58:02 +00:00
|
|
|
|
2009-07-15 22:38:17 +00:00
|
|
|
<li><?php get_calendar(); ?></li>
|
2009-06-13 11:58:02 +00:00
|
|
|
|
|
|
|
<li>
|
|
|
|
<h2>Menu</h2>
|
|
|
|
<ul>
|
|
|
|
<?php wp_list_pages('title_li=' ); ?>
|
|
|
|
</ul>
|
|
|
|
</li>
|
|
|
|
|
|
|
|
<li>
|
|
|
|
<h2>Monthly Archives</h2>
|
|
|
|
<ul>
|
|
|
|
<?php wp_get_archives('type=monthly'); ?>
|
|
|
|
</ul>
|
|
|
|
</li>
|
|
|
|
|
|
|
|
<?php wp_list_categories('title_li=<h2>Categories</h2>'); ?>
|
|
|
|
<?php wp_list_bookmarks(); ?>
|
|
|
|
|
2009-07-15 22:38:17 +00:00
|
|
|
<li><?php include (get_template_directory() . '/searchform.php'); ?></li>
|
2009-07-15 22:36:40 +00:00
|
|
|
<?php } ?>
|
2009-06-13 11:58:02 +00:00
|
|
|
</ul>
|
|
|
|
</div>
|