2006-11-19 02:56:05 -05:00
|
|
|
<?php
|
2005-01-04 00:20:06 -05:00
|
|
|
get_header();
|
|
|
|
?>
|
|
|
|
|
|
|
|
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
|
|
|
|
|
|
|
|
<?php the_date('','<h2>','</h2>'); ?>
|
2006-02-12 02:53:23 -05:00
|
|
|
|
2005-05-01 14:51:10 -04:00
|
|
|
<div class="post" id="post-<?php the_ID(); ?>">
|
|
|
|
<h3 class="storytitle"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3>
|
Roll tags out of 2.2 -- reverts [5272], [5271], [5257], [5254], [5253], [5251], [5250], [5243], [5235], [5234], [5232], [5231], [5229], [5228], [5217], [5216], [5215], [5213], half of [5210], [5209], [5205], [5203], [5201], [5196], [5184], [5168], [5163], [5162], [5150], [5149], [5148], [5147], [5113], [5112], [5111], and [5110]
git-svn-id: http://svn.automattic.com/wordpress/branches/2.2@5289 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2007-04-19 18:26:52 -04:00
|
|
|
<div class="meta"><?php _e("Filed under:"); ?> <?php the_category(',') ?> — <?php the_author() ?> @ <?php the_time() ?> <?php edit_post_link(__('Edit This')); ?></div>
|
2006-02-12 02:53:23 -05:00
|
|
|
|
2005-01-04 00:20:06 -05:00
|
|
|
<div class="storycontent">
|
|
|
|
<?php the_content(__('(more...)')); ?>
|
|
|
|
</div>
|
2006-02-12 02:53:23 -05:00
|
|
|
|
2005-01-04 00:20:06 -05:00
|
|
|
<div class="feedback">
|
2006-11-19 02:56:05 -05:00
|
|
|
<?php wp_link_pages(); ?>
|
|
|
|
<?php comments_popup_link(__('Comments (0)'), __('Comments (1)'), __('Comments (%)')); ?>
|
2005-01-04 00:20:06 -05:00
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
2005-02-13 12:32:32 -05:00
|
|
|
<?php comments_template(); // Get wp-comments.php template ?>
|
2005-01-04 00:20:06 -05:00
|
|
|
|
|
|
|
<?php endwhile; else: ?>
|
|
|
|
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
|
|
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
<?php posts_nav_link(' — ', __('« Previous Page'), __('Next Page »')); ?>
|
|
|
|
|
|
|
|
<?php get_footer(); ?>
|