Changeset 2013
- Timestamp:
- 12/30/2004 11:25:15 AM (21 years ago)
- Location:
- trunk/wp-content/themes/kubrick
- Files:
-
- 13 edited
-
404.php (modified) (2 diffs)
-
archive.php (modified) (3 diffs)
-
archives.php (modified) (2 diffs)
-
comments.php (modified) (6 diffs)
-
footer.php (modified) (2 diffs)
-
header.php (modified) (2 diffs)
-
index.php (modified) (3 diffs)
-
links.php (modified) (2 diffs)
-
page.php (modified) (2 diffs)
-
search.php (modified) (3 diffs)
-
searchform.php (modified) (1 diff)
-
sidebar.php (modified) (1 diff)
-
single.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/themes/kubrick/404.php
r2012 r2013 1 <?php include "header.php"; ?>1 <?php get_header(); ?> 2 2 3 3 <div id="content" class="narrowcolumn"> … … 7 7 </div> 8 8 9 <?php include "sidebar.php"; ?> 10 <?php include "footer.php"; ?> 9 <?php get_sidebar(); ?> 10 11 <?php get_footer(); ?> -
trunk/wp-content/themes/kubrick/archive.php
r2012 r2013 1 <?php include "header.php"; ?>1 <?php get_header(); ?> 2 2 3 3 <div id="content" class="narrowcolumn"> … … 61 61 62 62 <h2 class="center">Not Found</h2> 63 <?php include "searchform.php"; ?>63 <?php include (TEMPLATEPATH . "/searchform.php"; ?> 64 64 65 65 <?php endif; ?> … … 67 67 </div> 68 68 69 <?php include "sidebar.php"; ?> 70 <?php include "footer.php"; ?> 69 <?php get_sidebar(); ?> 70 71 <?php get_footer(); ?> -
trunk/wp-content/themes/kubrick/archives.php
r2012 r2013 1 <?php /* 2 Template Name: Archives 3 */ 4 ?> 5 <?php include "header.php"; ?> 1 <?php get_header(); ?> 6 2 7 3 <div id="content" class="widecolumn"> 8 4 9 <?php include "searchform.php"; ?>5 <?php include (TEMPLATEPATH . '/searchform.php'; ?> 10 6 11 7 <h2>Archives by Month:</h2> … … 21 17 </div> 22 18 23 <?php include "footer.php"; ?>19 <?php get_footer(); ?> -
trunk/wp-content/themes/kubrick/comments.php
r2012 r2013 15 15 16 16 /* This variable is for alternating comment background */ 17 $oddcomment = "graybox";17 $oddcomment = 'graybox'; 18 18 ?> 19 19 … … 27 27 <?php foreach ($comments as $comment) : ?> 28 28 29 <li class="<? =$oddcomment;?>">29 <li class="<?php echo $oddcomment; ?>"> 30 30 <a name="comment-<?php comment_ID() ?>"></a><cite><?php comment_author_link() ?></cite> Says:<br /> 31 31 <!--<small class="commentmetadata"><a href="#comment-<?php comment_ID() ?>" title="<?php comment_date('l, F jS, Y') ?> at <?php comment_time() ?>"><?php /* $entry_datetime = abs(strtotime($post->post_date)); $comment_datetime = abs(strtotime($comment->comment_date)); echo time_since($entry_datetime, $comment_datetime) */ ?></a> after publication. <?php edit_comment_link('e','',''); ?></small>--> … … 37 37 38 38 <?php /* Changes every other comment to a different class */ 39 if( "graybox"== $oddcomment) {$oddcomment="";}40 else { $oddcomment ="graybox"; }39 if('graybox' == $oddcomment) {$oddcomment="";} 40 else { $oddcomment = "graybox"; } 41 41 ?> 42 42 … … 65 65 <p><input type="text" name="author" id="author" class="styled" value="<?php echo $comment_author; ?>" size="22" tabindex="1" /> 66 66 <input type="hidden" name="comment_post_ID" value="<?php echo $id; ?>" /> 67 <input type="hidden" name="redirect_to" value="<?php echo htmlspecialchars($_SERVER["REQUEST_URI"]); ?>" />68 67 <label for="author"><small>Name</small></label></p> 69 68 … … 78 77 <p><textarea name="comment" id="comment" cols="100%" rows="10" tabindex="4"></textarea></p> 79 78 80 <?php if ('none' != get_settings("comment_moderation")) { ?>81 <p><small><strong>Please note:</strong> Comment moderation is enabled and may delay your comment. There is no need to resubmit your comment.</small></p>82 <?php } ?>83 84 79 <p><input name="submit" type="submit" id="submit" tabindex="5" value="Submit Comment" /></p> 85 80 … … 87 82 </form> 88 83 89 <?php // if you delete this the sky will fall on your head 90 endif; ?> 84 <?php endif; // if you delete this the sky will fall on your head ?> -
trunk/wp-content/themes/kubrick/footer.php
r2012 r2013 1 <? // Begin Footer ?> 1 2 2 <hr /> 3 3 <div id="footer"> … … 16 16 </div> 17 17 </div> 18 <? // End Footer ?>19 18 20 19 -
trunk/wp-content/themes/kubrick/header.php
r2012 r2013 56 56 <div id="page"> 57 57 58 <? // Begin Header ?> 58 59 59 <div id="header"> 60 60 <div id="headerimg"> … … 64 64 </div> 65 65 <hr /> 66 <? // End Header ?> -
trunk/wp-content/themes/kubrick/index.php
r2012 r2013 1 <?php include "header.php"; ?>1 <?php get_header(); ?> 2 2 3 3 <div id="content" class="narrowcolumn"> … … 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 "searchform.php"; ?>35 <?php include (TEMPLATEPATH . "/searchform.php"; ?> 36 36 37 37 <?php endif; ?> … … 39 39 </div> 40 40 41 <?php include "sidebar.php"; ?> 42 <?php include "footer.php"; ?> 41 <?php get_sidebar(); ?> 42 43 <?php get_footer(); ?> -
trunk/wp-content/themes/kubrick/links.php
r2012 r2013 1 <?php /* 2 Template Name: Links 3 */ 4 ?> 5 <?php include "header.php"; ?> 1 <?php get_header(); ?> 6 2 7 3 <div id="content" class="widecolumn"> … … 14 10 </div> 15 11 16 <?php include "footer.php"; ?>12 <?php get_footer(); ?> -
trunk/wp-content/themes/kubrick/page.php
r2012 r2013 1 <?php include "header.php"; ?>1 <?php get_header(); ?> 2 2 3 3 <div id="content" class="widecolumn"> … … 15 15 </div> 16 16 17 <?php include "footer.php"; ?>17 <?php get_footer(); ?> -
trunk/wp-content/themes/kubrick/search.php
r2012 r2013 1 <?php include "header.php"; ?>1 <?php get_header(); ?> 2 2 3 3 <div id="content" class="narrowcolumn"> … … 40 40 41 41 <h2 class="center">Not Found</h2> 42 <?php include "searchform.php"; ?>42 <?php include (TEMPLATEPATH . "/searchform.php"; ?> 43 43 44 44 <?php endif; ?> … … 46 46 </div> 47 47 48 <?php include "sidebar.php"; ?> 49 <?php include "footer.php"; ?> 48 <?php get_sidebar(); ?> 49 50 <?php get_footer(); ?> -
trunk/wp-content/themes/kubrick/searchform.php
r2012 r2013 1 <form method="get" id="searchform" action="<?php echo $PHP_SELF; ?>"> 2 <input type="text" value="<?=$s; ?>" name="s" id="s" /> 3 <input type="submit" id="searchsubmit" name="Submit" value="<?php _e('Go!'); ?>" /> 4 </form> 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" /> 3 <input type="submit" id="searchsubmit" name="Submit" value="Go!" /> 4 </div> 5 </form> -
trunk/wp-content/themes/kubrick/sidebar.php
r2012 r2013 3 3 4 4 <li> 5 <?php include "searchform.php"; ?>5 <?php include (TEMPLATEPATH . "/searchform.php"; ?> 6 6 </li> 7 7 -
trunk/wp-content/themes/kubrick/single.php
r2012 r2013 1 <?php include "header.php"; ?>1 <?php get_header(); ?> 2 2 3 3 <div id="content" class="widecolumn"> … … 64 64 </div> 65 65 66 <?php include "footer.php"; ?>66 <?php get_footer(); ?>
Note: See TracChangeset
for help on using the changeset viewer.