-
+ A6F4BC43632253BEEC3D1B4553DBEB614F666B77551D306CBD950D39BD7CD8B33E154CB1ECB30EAEA3A2A9060DFD2D59B8E34D00B8C2206142D2B509B9F568BC
mp-wp/wp-content/themes/classic/index.php
(0 . 0)(1 . 36)
65509 <?php
65510 /**
65511 * @package WordPress
65512 * @subpackage Classic_Theme
65513 */
65514 get_header();
65515 ?>
65516
65517 <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
65518
65519 <?php the_date('','<h2>','</h2>'); ?>
65520
65521 <div <?php post_class() ?> id="post-<?php the_ID(); ?>">
65522 <h3 class="storytitle"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3>
65523 <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>
65524
65525 <div class="storycontent">
65526 <?php the_content(__('(more...)')); ?>
65527 </div>
65528
65529 <div class="feedback">
65530 <?php wp_link_pages(); ?>
65531 <?php comments_popup_link(__('Comments (0)'), __('Comments (1)'), __('Comments (%)')); ?>
65532 </div>
65533
65534 </div>
65535
65536 <?php comments_template(); // Get wp-comments.php template ?>
65537
65538 <?php endwhile; else: ?>
65539 <p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
65540 <?php endif; ?>
65541
65542 <?php posts_nav_link(' — ', __('« Newer Posts'), __('Older Posts »')); ?>
65543
65544 <?php get_footer(); ?>