Changeset 3006
- Timestamp:
- 11/07/2005 09:31:05 AM (20 years ago)
- Location:
- trunk/wp-content/themes/default
- Files:
-
- 5 edited
-
archive.php (modified) (1 diff)
-
functions.php (modified) (2 diffs)
-
header.php (modified) (2 diffs)
-
index.php (modified) (1 diff)
-
search.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/themes/default/archive.php
r2857 r3006 41 41 42 42 <div class="entry"> 43 <?php the_ excerpt() ?>43 <?php the_content() ?> 44 44 </div> 45 45 46 <p class="postmetadata">Posted in <?php the_category(', ') ?> <strong>|</strong> <?php edit_post_link('Edit','','<strong>|</strong>'); ?> <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></p>46 <p class="postmetadata">Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?> <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></p> 47 47 48 48 </div> -
trunk/wp-content/themes/default/functions.php
r2930 r3006 2 2 3 3 function kubrick_head() { 4 $head = "<style type= \"text/css\">\n";4 $head = "<style type='text/css'>\n<!--"; 5 5 $output = ''; 6 6 if ( kubrick_header_image() ) { 7 $url = kubrick_header_image_url();7 $url = kubrick_header_image_url() ; 8 8 $output .= "#header { background: url('$url') no-repeat bottom center; }\n"; 9 9 } … … 14 14 $output .= "#headerimg { display: $display }\n"; 15 15 } 16 $foot = " </style>\n";16 $foot = "--></style>\n"; 17 17 if ( '' != $output ) 18 18 echo $head . $output . $foot; -
trunk/wp-content/themes/default/header.php
r2961 r3006 10 10 11 11 <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" /> 12 <link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" /> 13 <link rel="alternate" type="text/xml" title="RSS .92" href="<?php bloginfo('rss_url'); ?>" /> 14 <link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="<?php bloginfo('atom_url'); ?>" /> 12 <link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" /> 15 13 <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" /> 16 14 … … 44 42 </style> 45 43 46 <?php wp_get_archives('type=monthly&format=link'); ?>47 48 44 <?php wp_head(); ?> 49 45 </head> -
trunk/wp-content/themes/default/index.php
r2577 r3006 15 15 </div> 16 16 17 <p class="postmetadata">Posted in <?php the_category(', ') ?> <strong>|</strong> <?php edit_post_link('Edit','','<strong>|</strong>'); ?> <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></p>17 <p class="postmetadata">Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?> <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></p> 18 18 </div> 19 19 -
trunk/wp-content/themes/default/search.php
r2423 r3006 18 18 <h3 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h3> 19 19 <small><?php the_time('l, F jS, Y') ?></small> 20 21 <div class="entry">22 <?php the_excerpt() ?>23 </div>24 20 25 <p class="postmetadata">Posted in <?php the_category(', ') ?> <strong>|</strong> <?php edit_post_link('Edit','','<strong>|</strong>'); ?> <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></p>21 <p class="postmetadata">Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?> <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></p> 26 22 </div> 27 23 … … 35 31 <?php else : ?> 36 32 37 <h2 class="center">No t Found</h2>33 <h2 class="center">No posts found. Try a different search?</h2> 38 34 <?php include (TEMPLATEPATH . '/searchform.php'); ?> 39 35
Note: See TracChangeset
for help on using the changeset viewer.