-
+ CABA7C96252CAD4D1B2A72022BB8ADDCFC9FE18F414662C9BDAF2665C2892692D030CB9DFE2D05EA59AE978523114895602EC009330FFF40D2C4DAEDE65155BF
mp-wp/wp-content/themes/default/sidebar.php
(0 . 0)(1 . 78)
68129 <?php^M
68130 /**^M
68131 * @package WordPress^M
68132 * @subpackage Default_Theme^M
68133 */^M
68134 ?>^M
68135 <div id="sidebar">^M
68136 <ul>^M
68137 <?php /* Widgetized sidebar, if you have the plugin installed. */^M
68138 if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) : ?>^M
68139 <li>^M
68140 <?php get_search_form(); ?>^M
68141 </li>^M
68142 ^M
68143 <!-- Author information is disabled per default. Uncomment and fill in your details if you want to use it.^M
68144 <li><h2>Author</h2>^M
68145 <p>A little something about you, the author. Nothing lengthy, just an overview.</p>^M
68146 </li>^M
68147 -->^M
68148 ^M
68149 <?php if ( is_404() || is_category() || is_day() || is_month() ||^M
68150 is_year() || is_search() || is_paged() ) {^M
68151 ?> <li>^M
68152 ^M
68153 <?php /* If this is a 404 page */ if (is_404()) { ?>^M
68154 <?php /* If this is a category archive */ } elseif (is_category()) { ?>^M
68155 <p>You are currently browsing the archives for the <?php single_cat_title(''); ?> category.</p>^M
68156 ^M
68157 <?php /* If this is a yearly archive */ } elseif (is_day()) { ?>^M
68158 <p>You are currently browsing the <a href="<?php bloginfo('url'); ?>/"><?php echo bloginfo('name'); ?></a> blog archives^M
68159 for the day <?php the_time('l, F jS, Y'); ?>.</p>^M
68160 ^M
68161 <?php /* If this is a monthly archive */ } elseif (is_month()) { ?>^M
68162 <p>You are currently browsing the <a href="<?php bloginfo('url'); ?>/"><?php echo bloginfo('name'); ?></a> blog archives^M
68163 for <?php the_time('F, Y'); ?>.</p>^M
68164 ^M
68165 <?php /* If this is a yearly archive */ } elseif (is_year()) { ?>^M
68166 <p>You are currently browsing the <a href="<?php bloginfo('url'); ?>/"><?php echo bloginfo('name'); ?></a> blog archives^M
68167 for the year <?php the_time('Y'); ?>.</p>^M
68168 ^M
68169 <?php /* If this is a monthly archive */ } elseif (is_search()) { ?>^M
68170 <p>You have searched the <a href="<?php echo bloginfo('url'); ?>/"><?php echo bloginfo('name'); ?></a> blog archives^M
68171 for <strong>'<?php the_search_query(); ?>'</strong>. If you are unable to find anything in these search results, you can try one of these links.</p>^M
68172 ^M
68173 <?php /* If this is a monthly archive */ } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) { ?>^M
68174 <p>You are currently browsing the <a href="<?php echo bloginfo('url'); ?>/"><?php echo bloginfo('name'); ?></a> blog archives.</p>^M
68175 ^M
68176 <?php } ?>^M
68177 ^M
68178 </li> <?php }?>^M
68179 ^M
68180 <?php wp_list_pages('title_li=<h2>Pages</h2>' ); ?>^M
68181 ^M
68182 <li><h2>Archives</h2>^M
68183 <ul>^M
68184 <?php wp_get_archives('type=monthly'); ?>^M
68185 </ul>^M
68186 </li>^M
68187 ^M
68188 <?php wp_list_categories('show_count=1&title_li=<h2>Categories</h2>'); ?>^M
68189 ^M
68190 <?php /* If this is the frontpage */ if ( is_home() || is_page() ) { ?>^M
68191 <?php wp_list_bookmarks(); ?>^M
68192 ^M
68193 <li><h2>Meta</h2>^M
68194 <ul>^M
68195 <?php wp_register(); ?>^M
68196 <li><?php wp_loginout(); ?></li>^M
68197 <li><a href="http://validator.w3.org/check/referer" title="This page validates as XHTML 1.0 Transitional">Valid <abbr title="eXtensible HyperText Markup Language">XHTML</abbr></a></li>^M
68198 <?php wp_meta(); ?>^M
68199 </ul>^M
68200 </li>^M
68201 <?php } ?>^M
68202 ^M
68203 <?php endif; ?>^M
68204 </ul>^M
68205 </div>^M
68206 ^M