1:<?php get_header(); ?>
2:<?php get_sidebar(); ?>
3:<hr />
4:<div id="content">
5:<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
6: <?php // Post dates off by default the_date('','<h2>','</h2>'); ?>
7: <div id="post-<?php the_ID(); ?>">
8: <h2><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2>
9:
10:
11: <div class="meta"><?php _e("Posted in"); ?>
12: <?php the_category(',') ?>
13: by <?php the_author() ?>
14: on the <?php the_time('F jS, Y') ?>
15: <?php edit_post_link(__('Edit This')); ?></div>
16:
17:<div style="position:relative;float:none">
18:<?php
19: echo '<div class="main" style="min-width:480px">';
20: echo tsaw_ploop();
21: echo '</div>';
22:?>
23:</div>
24: <div class="main">
25: <?php the_content(__('(more...)')); ?>
26: </div>
27: </div>
28: <div class="comments">
29: <?php wp_link_pages(); ?>
30: <?php
31: comments_popup_link(__('<strong>0</strong> Comments'),
32: __('<strong>1</strong> Comment'), __('<strong>%</strong> Comments'));
33: ?>
34: </div>
35:
36:
37:<?php comments_template(); ?>
38:
39:<?php endwhile; else: ?>
40:<div class="warning">
41: <p><?php _e('Sorry, no posts matched your criteria, please try and search again.'); ?></p>
42:</div>
43:<?php endif; ?>
44:
45:<?php posts_nav_link(' — ', __('« Previous Page'), __('Next Page »')); ?>
46:
47: </div>
48:<!-- End float clearing -->
49:</div>
50:<!-- End content -->
51:<?php get_footer(); ?>