Line | |
---|
1 | <?php
|
---|
2 | /**
|
---|
3 | * @package WordPress
|
---|
4 | * @subpackage Classic_Theme
|
---|
5 | */
|
---|
6 | ?>
|
---|
7 | <!-- begin sidebar -->
|
---|
8 | <div id="menu">
|
---|
9 |
|
---|
10 | <ul>
|
---|
11 | <?php /* Widgetized sidebar, if you have the plugin installed. */
|
---|
12 | if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) : ?>
|
---|
13 | <?php wp_list_pages('title_li=' . __('Pages:')); ?>
|
---|
14 | <?php wp_list_bookmarks('title_after=&title_before='); ?>
|
---|
15 | <?php wp_list_categories('title_li=' . __('Categories:')); ?>
|
---|
16 | <li id="search">
|
---|
17 | <label for="s"><?php _e('Search:'); ?></label>
|
---|
18 | <form id="searchform" method="get" action="<?php bloginfo('home'); ?>">
|
---|
19 | <div>
|
---|
20 | <input type="text" name="s" id="s" size="15" /><br />
|
---|
21 | <input type="submit" value="<?php esc_attr_e('Search'); ?>" />
|
---|
22 | </div>
|
---|
23 | </form>
|
---|
24 | </li>
|
---|
25 | <li id="archives"><?php _e('Archives:'); ?>
|
---|
26 | <ul>
|
---|
27 | <?php wp_get_archives('type=monthly'); ?>
|
---|
28 | </ul>
|
---|
29 | </li>
|
---|
30 | <li id="meta"><?php _e('Meta:'); ?>
|
---|
31 | <ul>
|
---|
32 | <?php wp_register(); ?>
|
---|
33 | <li><?php wp_loginout(); ?></li>
|
---|
34 | <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>
|
---|
35 | <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>
|
---|
36 | <li><a href="http://validator.w3.org/check/referer" title="<?php _e('This page validates as XHTML 1.0 Transitional'); ?>"><?php _e('Valid <abbr title="eXtensible HyperText Markup Language">XHTML</abbr>'); ?></a></li>
|
---|
37 | <li><a href="http://gmpg.org/xfn/"><abbr title="XHTML Friends Network">XFN</abbr></a></li>
|
---|
38 | <li><a href="http://wordpress.org/" title="<?php _e('Powered by WordPress, state-of-the-art semantic personal publishing platform.'); ?>"><abbr title="WordPress">WP</abbr></a></li>
|
---|
39 | <?php wp_meta(); ?>
|
---|
40 | </ul>
|
---|
41 | </li>
|
---|
42 | <?php endif; ?>
|
---|
43 |
|
---|
44 | </ul>
|
---|
45 |
|
---|
46 | </div>
|
---|
47 | <!-- end sidebar -->
|
---|
Note:
See
TracBrowser
for help on using the repository browser.