\n");
echo("
" . __('Pages','aspen') . "
\n");
wp_list_pages(array('title_li' => false));
echo("
\n");
echo("
" .__('Posts','aspen') . "
\n");
wp_get_archives(array('type' => 'monthly', 'show_post_count' => true));
echo("
\n");
if (!aspen_getopt('post_hide_cats')) {
echo("
" . __('Categories','aspen') . "
\n");
wp_list_categories(array('show_count' => true, 'use_desc_for_title' => true, 'title_li' => false));
echo("
\n");
// If you want to show authors, simply uncomment the next 3 lines
// echo("
" . __('Authors','aspen') ."
\n");
// wp_list_authors(array('exclude_admin' => false, 'optioncount' => true, 'title_li' => false));
// echo("
\n");
echo("
" . __('Tag Cloud','aspen') . "
\n");
wp_tag_cloud(array('number' => 0));
echo("
\n");
}
echo("
\n");
aspen_link_pages();
?>