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

Return to listing of minimalissimplistic.zip