-
+ 4EE4CC167C707E3BAF7666957CDC4610EB4D539F12E145EC8E5C2CC1AB4B90E1986CC39D5E1A9F47157EE32F0A1379EFDD33840B400CAB171B6A2C398C957C38
mp-wp/wp-content/themes/default/index.php
(0 . 0)(1 . 45)
67661 <?php
67662 /**
67663 * @package WordPress
67664 * @subpackage Default_Theme
67665 */
67666
67667 get_header(); ?>
67668
67669 <div id="content" class="narrowcolumn">
67670
67671 <?php if (have_posts()) : ?>
67672
67673 <?php while (have_posts()) : the_post(); ?>
67674
67675 <div <?php post_class() ?> id="post-<?php the_ID(); ?>">
67676 <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
67677 <small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small>
67678
67679 <div class="entry">
67680 <?php the_content('Read the rest of this entry »'); ?>
67681 </div>
67682
67683 <p class="postmetadata"><?php the_tags('Tags: ', ', ', '<br />'); ?> Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?> <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></p>
67684 </div>
67685
67686 <?php endwhile; ?>
67687
67688 <div class="navigation">
67689 <div class="alignleft"><?php next_posts_link('« Older Entries') ?></div>
67690 <div class="alignright"><?php previous_posts_link('Newer Entries »') ?></div>
67691 </div>
67692
67693 <?php else : ?>
67694
67695 <h2 class="center">Not Found</h2>
67696 <p class="center">Sorry, but you are looking for something that isn't here.</p>
67697 <?php get_search_form(); ?>
67698
67699 <?php endif; ?>
67700
67701 </div>
67702
67703 <?php get_sidebar(); ?>
67704
67705 <?php get_footer(); ?>