2006-11-19 08:56:05 +01:00
|
|
|
<?php
|
2008-09-27 11:49:27 +02:00
|
|
|
/**
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Classic_Theme
|
|
|
|
*/
|
2005-01-04 06:20:06 +01:00
|
|
|
get_header();
|
|
|
|
?>
|
|
|
|
|
|
|
|
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
|
|
|
|
|
|
|
|
<?php the_date('','<h2>','</h2>'); ?>
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2008-08-13 21:09:08 +02:00
|
|
|
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
|
2005-05-01 20:51:10 +02:00
|
|
|
<h3 class="storytitle"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3>
|
2007-04-01 21:42:06 +02:00
|
|
|
<div class="meta"><?php _e("Filed under:"); ?> <?php the_category(',') ?> — <?php the_tags(__('Tags: '), ', ', ' — '); ?> <?php the_author() ?> @ <?php the_time() ?> <?php edit_post_link(__('Edit This')); ?></div>
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2005-01-04 06:20:06 +01:00
|
|
|
<div class="storycontent">
|
|
|
|
<?php the_content(__('(more...)')); ?>
|
|
|
|
</div>
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2005-01-04 06:20:06 +01:00
|
|
|
<div class="feedback">
|
2006-11-19 08:56:05 +01:00
|
|
|
<?php wp_link_pages(); ?>
|
|
|
|
<?php comments_popup_link(__('Comments (0)'), __('Comments (1)'), __('Comments (%)')); ?>
|
2005-01-04 06:20:06 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
2005-02-13 18:32:32 +01:00
|
|
|
<?php comments_template(); // Get wp-comments.php template ?>
|
2005-01-04 06:20:06 +01:00
|
|
|
|
|
|
|
<?php endwhile; else: ?>
|
|
|
|
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
|
|
|
|
<?php endif; ?>
|
|
|
|
|
2008-05-01 23:35:57 +02:00
|
|
|
<?php posts_nav_link(' — ', __('« Newer Posts'), __('Older Posts »')); ?>
|
2005-01-04 06:20:06 +01:00
|
|
|
|
|
|
|
<?php get_footer(); ?>
|