Ticket #2105: hatom-kubrick.diff
File hatom-kubrick.diff, 8.0 KB (added by , 19 years ago) |
---|
-
wp-content/themes/default/style.css
48 48 font-size: 1.2em 49 49 } 50 50 51 .widecolumn . entryp {51 .widecolumn .content p { 52 52 font-size: 1.05em; 53 53 } 54 54 55 .narrowcolumn . entry, .widecolumn .entry{55 .narrowcolumn .content, .widecolumn .content { 56 56 line-height: 1.4em; 57 57 } 58 58 … … 125 125 text-decoration: none; 126 126 } 127 127 128 . entryp a:visited {128 .content p a:visited { 129 129 color: #b85b5a; 130 130 } 131 131 … … 247 247 width: 450px; 248 248 } 249 249 250 . post{250 .entry { 251 251 margin: 0 0 40px; 252 252 text-align: justify; 253 253 } 254 254 255 .widecolumn . post{255 .widecolumn .entry { 256 256 margin: 0; 257 257 } 258 258 … … 378 378 Special stylized non-IE bullets 379 379 Do not work in Internet Explorer, which merely default to normal bullets. */ 380 380 381 html>body . entryul {381 html>body .content ul { 382 382 margin-left: 0px; 383 383 padding: 0 0 0 30px; 384 384 list-style: none; … … 386 386 text-indent: -10px; 387 387 } 388 388 389 html>body . entryli {389 html>body .content li { 390 390 margin: 7px 0 8px 10px; 391 391 } 392 392 393 . entryul li:before, #sidebar ul ul li:before {393 .content ul li:before, #sidebar ul ul li:before { 394 394 content: "\00BB \0020"; 395 395 } 396 396 397 . entryol {397 .content ol { 398 398 padding: 0 0 0 35px; 399 399 margin: 0; 400 400 } 401 401 402 . entryol li {402 .content ol li { 403 403 margin: 0; 404 404 padding: 0; 405 405 } … … 441 441 margin: 3px 0 0; 442 442 padding: 0; 443 443 } 444 /* End EntryLists */444 /* End Content Lists */ 445 445 446 446 447 447 … … 461 461 padding: 1px; 462 462 } 463 463 464 . entryform { /* This is mainly for password protected posts, makes them look better. */464 .content form { /* This is mainly for password protected posts, makes them look better. */ 465 465 text-align:center; 466 466 } 467 467 -
wp-content/themes/default/search.php
14 14 15 15 <?php while (have_posts()) : the_post(); ?> 16 16 17 <div class=" post">17 <div class="entry"> 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 20 -
wp-content/themes/default/index.php
1 1 <?php get_header(); ?> 2 2 3 <div id="content" class="narrowcolumn ">3 <div id="content" class="narrowcolumn feed"> 4 4 5 5 <?php if (have_posts()) : ?> 6 6 7 7 <?php while (have_posts()) : the_post(); ?> 8 8 9 <div class=" post" id="post-<?php the_ID(); ?>">9 <div class="entry" id="post-<?php the_ID(); ?>"> 10 10 <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2> 11 11 <small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small> 12 12 13 <div class=" entry">13 <div class="content"> 14 14 <?php the_content('Read the rest of this entry »'); ?> 15 15 </div> 16 16 -
wp-content/themes/default/page.php
3 3 <div id="content" class="narrowcolumn"> 4 4 5 5 <?php if (have_posts()) : while (have_posts()) : the_post(); ?> 6 <div class=" post" id="post-<?php the_ID(); ?>">6 <div class="entry" id="post-<?php the_ID(); ?>"> 7 7 <h2><?php the_title(); ?></h2> 8 8 <div class="entrytext"> 9 9 <?php the_content('<p class="serif">Read the rest of this page »</p>'); ?> -
wp-content/themes/default/single.php
1 1 <?php get_header(); ?> 2 2 3 <div id="content" class="widecolumn ">3 <div id="content" class="widecolumn feed"> 4 4 5 5 <?php if (have_posts()) : while (have_posts()) : the_post(); ?> 6 6 … … 9 9 <div class="alignright"><?php next_post_link('%link »') ?></div> 10 10 </div> 11 11 12 <div class=" post" id="post-<?php the_ID(); ?>">12 <div class="entry" id="post-<?php the_ID(); ?>"> 13 13 <h2><a href="<?php echo get_permalink() ?>" rel="bookmark" title="Permanent Link: <?php the_title(); ?>"><?php the_title(); ?></a></h2> 14 14 15 15 <div class="entrytext"> 16 <?php the_content('<p class="serif">Read the rest of this entry »</p>'); ?> 16 <div class="content"> 17 <?php the_content('<p class="serif">Read the rest of this entry »</p>'); ?> 17 18 18 <?php link_pages('<p><strong>Pages:</strong> ', '</p>', 'number'); ?> 19 <?php link_pages('<p><strong>Pages:</strong> ', '</p>', 'number'); ?> 20 </div> 19 21 20 22 <p class="postmetadata alt"> 21 23 <small> … … 24 26 You'll need to download this plugin, and follow the instructions: 25 27 http://binarybonsai.com/archives/2004/08/17/time-since-plugin/ */ 26 28 /* $entry_datetime = abs(strtotime($post->post_date) - (60*120)); echo time_since($entry_datetime); echo ' ago'; */ ?> 27 on < ?php the_time('l, F jS, Y') ?> at <?php the_time() ?>29 on <abbr class="published" title="<?php $t = get_the_time('Y-m-d\TH:i:sO'); echo substr($t, 0, strlen($t)-2).":".substr($t, strlen($t)-2); ?>"><?php the_time('l, F jS, Y') ?> at <?php the_time() ?></abbr> 28 30 and is filed under <?php the_category(', ') ?>. 29 31 You can follow any responses to this entry through the <?php comments_rss_link('RSS 2.0'); ?> feed. 30 32 -
wp-content/themes/default/archive.php
35 35 </div> 36 36 37 37 <?php while (have_posts()) : the_post(); ?> 38 <div class=" post">38 <div class="entry"> 39 39 <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> 40 40 <small><?php the_time('l, F jS, Y') ?></small> 41 41 42 <div class=" entry">42 <div class="content"> 43 43 <?php the_content() ?> 44 44 </div> 45 45 -
wp-content/themes/default/attachment.php
10 10 </div> 11 11 <?php $attachment_link = get_the_attachment_link($post->ID, true, array(450, 800)); // This also populates the iconsize for the next line ?> 12 12 <?php $_post = &get_post($post->ID); $classname = ($_post->iconsize[0] <= 128 ? 'small' : '') . 'attachment'; // This lets us style narrow icons specially ?> 13 <div class=" post" id="post-<?php the_ID(); ?>">13 <div class="entry" id="post-<?php the_ID(); ?>"> 14 14 <h2><a href="<?php echo get_permalink($post->post_parent); ?>" rev="attachment"><?php echo get_the_title($post->post_parent); ?></a> » <a href="<?php echo get_permalink() ?>" rel="bookmark" title="Permanent Link: <?php the_title(); ?>"><?php the_title(); ?></a></h2> 15 15 <div class="entrytext"> 16 16 <p class="<?php echo $classname; ?>"><?php echo $attachment_link; ?><br /><?php echo basename($post->guid); ?></p> … … 26 26 You'll need to download this plugin, and follow the instructions: 27 27 http://binarybonsai.com/archives/2004/08/17/time-since-plugin/ */ 28 28 /* $entry_datetime = abs(strtotime($post->post_date) - (60*120)); echo time_since($entry_datetime); echo ' ago'; */ ?> 29 on < ?php the_time('l, F jS, Y') ?> at <?php the_time() ?>29 on <abbr class="published" title="<?php the_time('l') ?>"><?php the_time('l, F jS, Y') ?> at <?php the_time() ?></abbr> 30 30 and is filed under <?php the_category(', ') ?>. 31 31 You can follow any responses to this entry through the <?php comments_rss_link('RSS 2.0'); ?> feed. 32 32