-
Notifications
You must be signed in to change notification settings - Fork 1
/
sidebar.php
43 lines (36 loc) · 1.43 KB
/
sidebar.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?php
/**
* @package WordPress
* @subpackage Greyomatic
*/
?>
<div id="sidebar" class="column">
<div class="sidebar"><h2><?php _e('My personal Sidebar', 'greyomatic'); ?></h2></div>
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar(AL_THEMENAME . ' Sidebar') ) : ?>
<h3 class="widget"><?php _e('Pages', 'greyomatic'); ?></h3>
<ul>
<?php wp_list_pages('title_li='); ?>
</ul>
<h3 class="widget"><?php _e('Categories', 'greyomatic'); ?></h3>
<ul>
<?php wp_list_categories('title_li='); ?>
</ul>
<h3 class="widget"><?php _e('Blogroll', 'greyomatic'); ?></h3>
<ul>
<?php wp_list_bookmarks('title_li=&categorize=0'); ?>
</ul>
<h3 class="widget"><?php _e('Archive', 'greyomatic'); ?></h3>
<ul>
<?php wp_get_archives('type=monthly'); ?>
</ul>
<h3 class="widget"><?php _e('Meta', 'greyomatic'); ?></h3>
<ul>
<?php wp_register(); ?>
<li><?php wp_loginout(); ?></li>
<li><a href="<?php bloginfo('rss2_url'); ?>" title="<?php _e('Syndicate this site using RSS','greyomatic'); ?>"><?php _e('<abbr title="Really Simple Syndication">RSS</abbr>','greyomatic'); ?></a></li>
<li><a href="<?php bloginfo('comments_rss2_url'); ?>" title="<?php _e('The latest comments to all posts in RSS','greyomatic'); ?>"><?php _e('Comments <abbr title="Really Simple Syndication">RSS</abbr>','greyomatic'); ?></a></li>
<?php wp_meta(); ?>
</ul>
<?php endif; ?>
<?php if(get_option('twitter_username')) include(TEMPLATEPATH."/widgets/twitter.php"); ?>
</div><!-- /#sidebar -->