-
Website
http://blakesamic.com/ -
Original page
http://blakesamic.com/2008/08/31/complete-blog-redesign-tonight/ -
Subscribe
All Comments -
Community
-
Top Commenters
-
svdodge
1 comment · 1 points
-
SirCrumpet
1 comment · 1 points
-
tadfad
1 comment · 1 points
-
limo hire birmingham
1 comment · 1 points
-
Blake Samic
51 comments · 1 points
-
-
Popular Threads
-
Amazon’s Kindle: Huge Potential, Not Where You Think
2 weeks ago · 1 comment
-
Amazon’s Kindle: Huge Potential, Not Where You Think
Well done.
Originally it looked like this:
[
<div class="home fix">
<div class="main">
<div class="fix">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<!-- thumbnail wrapper -->
<div class="thumb main">
<!-- 235150image-covers -->
<?php $image = get_post_meta($post->ID, 'thumbnail', true); ?>
<a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><img src="<?php echo $image; ?>" alt="" />
<!-- 235150image end -->
<!-- thumbanil title -->
<div class="thumb-title">
<h2><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title() ?>
<?php comments_number('{0}', '{1}', '{%}' );?></h2>
</div>
<!-- thumbanil title end -->
</div>
</div>
<?php endwhile; ?>
<?php else : ?>
<div class="post single">
<h2>No matching results</h2>
<div class="entry">
You seem to have found a mis-linked page or search query with no associated or related results.
</div>
</div>
<?php endif; ?>
]
And I changed it to this:
[
<div class="home fix">
<div class="main">
<div class="fix">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post single fix" id="post-<?php the_ID(); ?>">
<h2><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title() ?></h2>
<div class="postMeta">
<span class="comments"><?php comments_number('No comments', '1 comment', '% comments' );?></span>
<span class="date"> // <?php the_time('M jS, Y') ?> // <?php the_category(', ') ?></span>
</div>
<div class="entry">
<?php the_content('
Read the rest of this entry »
'); ?></div>
</div>
<?php endwhile; else : ?>
<?php endif; ?>
]
How did you get Disqus to import your old comments? Mine just says "Unprocessed" after I imported them...
followed the instructions on their site. You might want to follow up
with them.