]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-content/themes/classic/index.php
Wordpress 2.3.2-scripts
[autoinstalls/wordpress.git] / wp-content / themes / classic / index.php
1 <?php
2 get_header();
3 ?>
4
5 <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
6
7 <?php the_date('','<h2>','</h2>'); ?>
8
9 <div class="post" id="post-<?php the_ID(); ?>">
10          <h3 class="storytitle"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3>
11         <div class="meta"><?php _e("Filed under:"); ?> <?php the_category(',') ?> &#8212; <?php the_tags(__('Tags: '), ', ', ' &#8212; '); ?> <?php the_author() ?> @ <?php the_time() ?> <?php edit_post_link(__('Edit This')); ?></div>
12
13         <div class="storycontent">
14                 <?php the_content(__('(more...)')); ?>
15         </div>
16
17         <div class="feedback">
18                 <?php wp_link_pages(); ?>
19                 <?php comments_popup_link(__('Comments (0)'), __('Comments (1)'), __('Comments (%)')); ?>
20         </div>
21
22 </div>
23
24 <?php comments_template(); // Get wp-comments.php template ?>
25
26 <?php endwhile; else: ?>
27 <p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
28 <?php endif; ?>
29
30 <?php posts_nav_link(' &#8212; ', __('&laquo; Older Posts'), __('Newer Posts &raquo;')); ?>
31
32 <?php get_footer(); ?>