Changeset 2032 for trunk/index.php
- Timestamp:
- 01/02/2005 02:47:45 AM (21 years ago)
- File:
-
- 1 edited
-
trunk/index.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/index.php
r2009 r2032 2 2 /* Don't remove this line. */ 3 3 require('./wp-blog-header.php'); 4 get_header();5 4 ?> 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(); ?>
Note: See TracChangeset
for help on using the changeset viewer.