Changeset 2016
- Timestamp:
- 12/30/2004 11:35:04 AM (21 years ago)
- Location:
- trunk/wp-content/themes/kubrick
- Files:
-
- 6 edited
-
archive.php (modified) (1 diff)
-
footer.php (modified) (1 diff)
-
index.php (modified) (1 diff)
-
search.php (modified) (1 diff)
-
searchform.php (modified) (1 diff)
-
sidebar.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/themes/kubrick/archive.php
r2013 r2016 61 61 62 62 <h2 class="center">Not Found</h2> 63 <?php include (TEMPLATEPATH . "/searchform.php"; ?>63 <?php include (TEMPLATEPATH . '/searchform.php'); ?> 64 64 65 65 <?php endif; ?> -
trunk/wp-content/themes/kubrick/footer.php
r2013 r2016 4 4 <p> 5 5 <?php bloginfo('name'); ?> is proudly powered by 6 <a href="http://wordpress.org">WordPress <?php echo $wp_version; ?></a> 7 <!-- 8 and valid <a href="http://validator.w3.org/check/referer" title="This page validates as XHTML 1.0 Transitional (most of the time)">XHTML</a> and 9 <a href="http://jigsaw.w3.org/css-validator/check/referer" title="Valid CSS; hopefully...">CSS</a>. 10 --> 6 <a href="http://wordpress.org">WordPress</a> 11 7 <br /><a href="<?php bloginfo('rss2_url'); ?>">Entries (RSS)</a> 12 8 and <a href="<?php bloginfo('comments_rss2_url'); ?>">Comments (RSS)</a>. 13 <!-- Spawned in <?php timer_stop(1); ?> seconds. --> 14 <a href="http://binarybonsai.com/kubrick/">Design by Michael Heilemann.</a> 9 <!-- <?php echo $wpdb->num_queries; ?> queries. <?php timer_stop(1); ?> seconds. --> 15 10 </p> 16 11 </div> 17 12 </div> 18 13 19 14 <!-- Gorgeous design by Michael Heilemann - http://binarybonsai.com/kubrick/ --> 20 15 <?php /* "Just what do you think you're doing Dave?" */ ?> 21 16 -
trunk/wp-content/themes/kubrick/index.php
r2013 r2016 33 33 <h2 class="center">Not Found</h2> 34 34 <p class="center"><?php _e("Sorry, but you are looking for something that isn't here."); ?></p> 35 <?php include (TEMPLATEPATH . "/searchform.php" ; ?>35 <?php include (TEMPLATEPATH . "/searchform.php"); ?> 36 36 37 37 <?php endif; ?> -
trunk/wp-content/themes/kubrick/search.php
r2013 r2016 40 40 41 41 <h2 class="center">Not Found</h2> 42 <?php include (TEMPLATEPATH . "/searchform.php"; ?>42 <?php include (TEMPLATEPATH . '/searchform.php'); ?> 43 43 44 44 <?php endif; ?> -
trunk/wp-content/themes/kubrick/searchform.php
r2013 r2016 1 1 <form method="get" id="searchform" action="<?php echo $_SERVER['PHP_SELF']; ?>"> 2 <div><input type="text" value="<?php echo bb_specialchars($s, 1); ?>" name="s" id="s" />2 <div><input type="text" value="<?php echo wp_specialchars($s, 1); ?>" name="s" id="s" /> 3 3 <input type="submit" id="searchsubmit" name="Submit" value="Go!" /> 4 4 </div> -
trunk/wp-content/themes/kubrick/sidebar.php
r2013 r2016 3 3 4 4 <li> 5 <?php include (TEMPLATEPATH . "/searchform.php"; ?>5 <?php include (TEMPLATEPATH . '/searchform.php'); ?> 6 6 </li> 7 7 … … 67 67 </li> 68 68 69 <li><h2><?php _e('Admin'); ?></h2> 70 <ul> 71 <li><a href="<?php echo get_settings('siteurl'); ?>/wp-login.php"><?php _e('Login'); ?></a></li> 72 <!-- 73 <li><a href="<?php echo get_settings('siteurl'); ?>/wp-register.php"><?php _e('Register'); ?></a></li> 74 --> 75 </ul> 69 <li><h2><?php _e('Meta'); ?></h2> 70 <ul> 71 <li><?php wp_register(); ?></li> 72 <li><?php wp_loginout(); ?></li> 73 <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> 74 <li><a href="http://gmpg.org/xfn/"><abbr title="XHTML Friends Network">XFN</abbr></a></li> 75 <li><a href="http://wordpress.org/" title="<?php _e('Powered by WordPress, state-of-the-art semantic personal publishing platform.'); ?>"><abbr title="WordPress">WordPress</abbr></a></li> 76 <?php wp_meta(); ?> 77 </ul> 76 78 </li> 77 79 <?php } ?>
Note: See TracChangeset
for help on using the changeset viewer.