2005-01-04 05:20:06 +00:00
|
|
|
<?php get_header(); ?>
|
2005-01-02 02:47:45 +00:00
|
|
|
|
2005-01-04 05:20:06 +00:00
|
|
|
<div id="content" class="narrowcolumn">
|
2005-01-02 02:47:45 +00:00
|
|
|
|
2005-01-04 05:20:06 +00:00
|
|
|
<?php if (have_posts()) : ?>
|
2006-02-12 07:53:23 +00:00
|
|
|
|
2005-01-04 05:20:06 +00:00
|
|
|
<?php while (have_posts()) : the_post(); ?>
|
2006-02-12 07:53:23 +00:00
|
|
|
|
2005-05-01 18:51:10 +00:00
|
|
|
<div class="post" id="post-<?php the_ID(); ?>">
|
|
|
|
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
|
2005-01-04 05:20:06 +00:00
|
|
|
<small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small>
|
2006-02-12 07:53:23 +00:00
|
|
|
|
2005-01-04 05:20:06 +00:00
|
|
|
<div class="entry">
|
|
|
|
<?php the_content('Read the rest of this entry »'); ?>
|
|
|
|
</div>
|
2006-02-12 07:53:23 +00:00
|
|
|
|
Roll tags out of 2.2 -- reverts [5272], [5271], [5257], [5254], [5253], [5251], [5250], [5243], [5235], [5234], [5232], [5231], [5229], [5228], [5217], [5216], [5215], [5213], half of [5210], [5209], [5205], [5203], [5201], [5196], [5184], [5168], [5163], [5162], [5150], [5149], [5148], [5147], [5113], [5112], [5111], and [5110]
git-svn-id: http://svn.automattic.com/wordpress/branches/2.2@5289 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2007-04-19 22:26:52 +00:00
|
|
|
<p class="postmetadata">Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?> <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></p>
|
2005-01-04 05:20:06 +00:00
|
|
|
</div>
|
2006-02-12 07:53:23 +00:00
|
|
|
|
2005-01-04 05:20:06 +00:00
|
|
|
<?php endwhile; ?>
|
|
|
|
|
|
|
|
<div class="navigation">
|
2005-03-09 04:21:24 +00:00
|
|
|
<div class="alignleft"><?php next_posts_link('« Previous Entries') ?></div>
|
|
|
|
<div class="alignright"><?php previous_posts_link('Next Entries »') ?></div>
|
2005-01-04 05:20:06 +00:00
|
|
|
</div>
|
2006-02-12 07:53:23 +00:00
|
|
|
|
2005-01-04 05:20:06 +00:00
|
|
|
<?php else : ?>
|
2005-01-02 02:47:45 +00:00
|
|
|
|
2005-01-04 05:20:06 +00:00
|
|
|
<h2 class="center">Not Found</h2>
|
2005-02-27 17:04:45 +00:00
|
|
|
<p class="center">Sorry, but you are looking for something that isn't here.</p>
|
2005-01-04 05:20:06 +00:00
|
|
|
<?php include (TEMPLATEPATH . "/searchform.php"); ?>
|
2005-01-02 02:47:45 +00:00
|
|
|
|
2005-01-04 05:20:06 +00:00
|
|
|
<?php endif; ?>
|
2005-01-02 02:47:45 +00:00
|
|
|
|
2005-01-04 05:20:06 +00:00
|
|
|
</div>
|
2005-01-02 02:47:45 +00:00
|
|
|
|
2005-01-04 05:20:06 +00:00
|
|
|
<?php get_sidebar(); ?>
|
2005-01-02 02:47:45 +00:00
|
|
|
|
2005-02-27 17:04:45 +00:00
|
|
|
<?php get_footer(); ?>
|