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