blob: 1e14eb72a98c4d96b7f958e4483cdaad4f233b24 (
plain)
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
<div id="right">
<div class="widget">
<h3>Search</h3>
<form method="get" id="searchform" action="<?php bloginfo('home'); ?>/">
<input type="text" value="Search" name="s" id="search_input" onfocus="this.value=''; changefc('white');" />
<input type="image" src="<?php bloginfo('template_url'); ?>/images/blank.png" title="Search" id="search_button" />
</form>
</div>
<?php if ( !function_exists('dynamic_sidebar')
|| !dynamic_sidebar('Sidebar') ) : ?>
<div class="widget">
<h3>Recent Posts</h3>
<ul>
<?php wp_get_archives('title_li=&type=postbypost&limit=10'); ?>
</ul>
</div>
<div class="widget">
<h3>Categories</h3>
<ul>
<?php wp_list_categories('orderby=name&title_li='); ?>
</ul>
</div>
<div class="widget">
<h3>Archives</h3>
<ul>
<?php wp_get_archives('type=monthly'); ?>
</ul>
</div>
<div class="widget">
<h3>Tags</h3>
<ul>
<?php wp_tag_cloud(); ?>
</ul>
</div>
<div class="widget-last">
<h3><?php _e('Meta'); ?></h3>
<ul>
<li><a href="<?php bloginfo('rss2_url'); ?>" title="<?php _e('Syndicate this site using RSS'); ?>"><?php _e('<abbr title="Really Simple Syndication">RSS</abbr>'); ?></a></li>
<li><a href="<?php bloginfo('comments_rss2_url'); ?>" title="<?php _e('The latest comments to all posts in RSS'); ?>"><?php _e('Comments <abbr title="Really Simple Syndication">RSS</abbr>'); ?></a></li>
<?php wp_meta(); ?>
</ul>
</div>
<?php endif; ?>
</div><!-- End Right -->
|