2003-12-10 19:22:36 -05:00
|
|
|
<?php
|
2004-04-23 00:05:26 -04:00
|
|
|
/* Don't remove this line. */
|
2004-04-15 22:24:37 -04:00
|
|
|
require('./wp-blog-header.php');
|
2004-08-20 13:14:27 -04:00
|
|
|
include(ABSPATH . '/wp-header.php');
|
2003-05-23 09:49:31 -04:00
|
|
|
?>
|
2003-04-01 09:12:34 -05:00
|
|
|
|
2004-08-08 11:31:50 -04:00
|
|
|
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
|
2003-04-01 09:12:34 -05:00
|
|
|
|
2003-12-04 17:53:15 -05:00
|
|
|
<?php the_date('','<h2>','</h2>'); ?>
|
|
|
|
|
|
|
|
<div class="post">
|
2004-09-16 06:58:33 -04:00
|
|
|
<h3 class="storytitle" id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3>
|
2004-06-10 03:42:48 -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>
|
2003-12-04 17:53:15 -05:00
|
|
|
|
|
|
|
<div class="storycontent">
|
2004-09-03 18:40:37 -04:00
|
|
|
<?php the_content(__('(more...)')); ?>
|
2003-12-04 17:53:15 -05:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="feedback">
|
2004-04-24 15:23:57 -04:00
|
|
|
<?php wp_link_pages(); ?>
|
|
|
|
<?php comments_popup_link(__('Comments (0)'), __('Comments (1)'), __('Comments (%)')); ?>
|
2003-12-04 17:53:15 -05:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<!--
|
|
|
|
<?php trackback_rdf(); ?>
|
|
|
|
-->
|
2003-08-24 12:51:32 -04:00
|
|
|
|
2003-12-04 17:53:15 -05:00
|
|
|
</div>
|
2003-04-01 09:12:34 -05:00
|
|
|
|
2004-06-10 03:42:48 -04:00
|
|
|
<?php comments_template(); // Get wp-comments.php template ?>
|
|
|
|
|
2004-08-08 11:31:50 -04:00
|
|
|
<?php endwhile; else: ?>
|
2004-04-24 15:23:57 -04:00
|
|
|
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
|
2004-04-15 22:24:37 -04:00
|
|
|
<?php endif; ?>
|
2004-07-28 23:34:08 -04:00
|
|
|
|
|
|
|
<?php posts_nav_link(' — ', __('« Previous Page'), __('Next Page »')); ?>
|
2003-04-01 09:12:34 -05:00
|
|
|
|
2004-08-20 13:14:27 -04:00
|
|
|
<?php include(ABSPATH . '/wp-footer.php'); ?>
|