]> git.openstreetmap.org Git - stateofthemap.git/blob - sidebar.php
Aerodrome 1.0.3
[stateofthemap.git] / sidebar.php
1 <!-- begin sidebar -->
2
3 <div id="sidebar">
4
5 <div id="search">
6 <ul>
7  <li style="margin-top:0px;">
8    <form id="searchform" method="get" action="<?php bloginfo('home'); ?>">
9         <div>
10                 <input type="text" name="s" id="s" size="11" />
11                 <input type="image" src="<?php bloginfo('url'); ?>/wp-content/themes/aerodrome/images/lens.png" title="search" alt="S" style="margin:0 0 -5px 3px;" />
12         </div>
13         </form>
14  </li>
15 </ul>
16 </div><!-- end search -->
17
18 <ul>
19 <?php         /* Widgetized sidebar, if you have the plugin installed. */
20                 if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar("Right Sidebar") ) : ?>
21
22
23         <?php wp_list_pages('title_li=<h3>' . __('Pages:') . '</h3>' ); ?>
24
25
26
27         <?php wp_list_categories('title_li=<h3>' . __('Categories:') . '</h3>' ); ?>
28
29
30
31  <li id="archives"><h3><?php _e('Archives:'); ?></h3>
32         <ul>
33          <?php wp_get_archives('type=monthly'); ?>
34         </ul>
35  </li>
36
37  <li id="meta"><h3><?php _e('Meta:'); ?></h3>
38         <ul>
39                 <?php wp_register(); ?>
40                 <li><?php wp_loginout(); ?></li>
41                 <li><a href="<?php bloginfo('rss2_url'); ?>" title="<?php _e('Syndicate this site using RSS'); ?>"><?php _e('RSS'); ?></a></li>
42                 <li><a href="<?php bloginfo('comments_rss2_url'); ?>" title="<?php _e('The latest comments to all posts in RSS'); ?>"><?php _e('Comments RSS'); ?></a></li>
43                 <li><a href="http://validator.w3.org/check/referer" title="<?php _e('This page validates as XHTML 1.0 Transitional'); ?>"><?php _e('Valid XHTML'); ?></a></li>
44                 <li><a href="http://gmpg.org/xfn/">XFN</a></li>
45                 <li><a href="http://wordpress.org/" title="<?php _e('Powered by WordPress, state-of-the-art semantic personal publishing platform.'); ?>">WP</a></li>
46                 <?php wp_meta(); ?>
47         </ul>
48  </li>
49
50         <?php wp_list_bookmarks('title_after=</h3>&title_before=<h3>'); ?>
51
52
53 <?php endif; ?>
54
55
56
57
58
59 </ul>
60
61 </div><!-- end sidebar -->