Content of sidebar.php from minimalissimplistic.zip

without / with line numbers
  1. <!-- begin sidebar -->
  2. <ul>
  3.     <li id="about_author"><h2>About the author :</h2>
  4.     <p><?php mytheme_about() ?></p>
  5.     </li>

  6.     <?php if (function_exists('wp_theme_switcher')) { ?>
  7.     <li id="themes"><h2>Themes:</h2>
  8.         <?php wp_theme_switcher(); ?>
  9.     </li>
  10.     <?php ?>
  11.       
  12.       <?php wp_list_pages('title_li=<h2>' __('Pages') . '</h2>'); ?>
  13.          
  14.    <li id="categories"><h2><?php _e('Categories:'); ?></h2>
  15.     <ul>
  16.     <?php wp_list_cats(); ?>
  17.     </ul>
  18.      </li>
  19.  
  20.      <li id="search">
  21.    <label for="s"><h2><?php _e('Search:'); ?></h2></label>    
  22.    <form id="searchform" method="get" action="<?php echo $_SERVER['PHP_SELF']; ?>">
  23.     <div>
  24.         <input type="text" name="s" id="s" size="15" /><br />
  25.         <input type="submit" value="<?php _e('Search'); ?>" />
  26.     </div>
  27.     </form>
  28.      </li>
  29.  
  30.      <li id="archives"><h2><?php _e('Archives:'); ?></h2>
  31.      <ul>
  32.      <?php wp_get_archives('type=monthly'); ?>
  33.      </ul>
  34.      </li>
  35.  
  36.      <li id="meta"><h2><?php _e('Meta:'); ?></h2>
  37.      <ul>
  38.         <?php wp_register(); ?>
  39.         <li><?php wp_loginout(); ?></li>
  40.         <li><a href="feed:<?php bloginfo('rss2_url'); ?>" title="<?php _e('Syndicate this site using RSS'); ?>"><?php _e('<abbr title="Really Simple Syndication">RSS</abbr>'); ?></a></li>
  41.         <li><a href="feed:<?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>
  42.         <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>
  43.         <li><a href="http://gmpg.org/xfn/"><abbr title="XHTML Friends Network">XFN</abbr></a></li>
  44.         <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>
  45.         <?php wp_meta(); ?>
  46.     </ul>
  47.      </li>

  48. </ul>
  49. <!-- end sidebar -->
  50.  

Return to listing of minimalissimplistic.zip