| 6 | | |
|---|
| 7 | | <?php if (have_posts()) : while (have_posts()) : the_post(); ?> |
|---|
| 8 | | |
|---|
| 9 | | <?php the_date('','<h2>','</h2>'); ?> |
|---|
| 10 | | |
|---|
| 11 | | <div class="post"> |
|---|
| 12 | | <h3 class="storytitle" id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3> |
|---|
| 13 | | <div class="meta"><?php _e("Filed under:"); ?> <?php the_category(',') ?> — <?php the_author() ?> @ <?php the_time() ?> <?php edit_post_link(__('Edit This')); ?></div> |
|---|
| 14 | | |
|---|
| 15 | | <div class="storycontent"> |
|---|
| 16 | | <?php the_content(__('(more...)')); ?> |
|---|
| 17 | | </div> |
|---|
| 18 | | |
|---|
| 19 | | <div class="feedback"> |
|---|
| 20 | | <?php wp_link_pages(); ?> |
|---|
| 21 | | <?php comments_popup_link(__('Comments (0)'), __('Comments (1)'), __('Comments (%)')); ?> |
|---|
| 22 | | </div> |
|---|
| 23 | | |
|---|
| 24 | | <!-- |
|---|
| 25 | | <?php trackback_rdf(); ?> |
|---|
| 26 | | --> |
|---|
| 27 | | |
|---|
| 28 | | </div> |
|---|
| 29 | | |
|---|
| 30 | | <?php comments_template( is_single() ); // Get wp-comments.php template ?> |
|---|
| 31 | | |
|---|
| 32 | | <?php endwhile; else: ?> |
|---|
| 33 | | <p><?php _e('Sorry, no posts matched your criteria.'); ?></p> |
|---|
| 34 | | <?php endif; ?> |
|---|
| 35 | | |
|---|
| 36 | | <?php posts_nav_link(' — ', __('« Previous Page'), __('Next Page »')); ?> |
|---|
| 37 | | |
|---|
| 38 | | <?php get_footer(); ?> |
|---|