2008-09-27 05:49:27 -04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Default_Theme
|
|
|
|
*/
|
|
|
|
|
|
|
|
get_header(); ?>
|
2005-01-01 21:47:45 -05:00
|
|
|
|
2009-04-16 12:42:32 -04:00
|
|
|
<div id="content" class="narrowcolumn" role="main">
|
2005-01-01 21:47:45 -05:00
|
|
|
|
2005-01-04 00:20:06 -05:00
|
|
|
<?php if (have_posts()) : ?>
|
2006-02-12 02:53:23 -05:00
|
|
|
|
2005-01-04 00:20:06 -05:00
|
|
|
<?php while (have_posts()) : the_post(); ?>
|
2006-02-12 02:53:23 -05:00
|
|
|
|
2008-08-13 15:09:08 -04:00
|
|
|
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
|
2007-09-18 18:50:59 -04:00
|
|
|
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
|
2005-01-04 00:20:06 -05:00
|
|
|
<small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small>
|
2006-02-12 02:53:23 -05:00
|
|
|
|
2005-01-04 00:20:06 -05:00
|
|
|
<div class="entry">
|
|
|
|
<?php the_content('Read the rest of this entry »'); ?>
|
|
|
|
</div>
|
2006-02-12 02:53:23 -05:00
|
|
|
|
2007-03-26 04:08:31 -04:00
|
|
|
<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>
|
2005-01-04 00:20:06 -05:00
|
|
|
</div>
|
2006-02-12 02:53:23 -05:00
|
|
|
|
2005-01-04 00:20:06 -05:00
|
|
|
<?php endwhile; ?>
|
|
|
|
|
|
|
|
<div class="navigation">
|
2007-06-07 19:33:06 -04:00
|
|
|
<div class="alignleft"><?php next_posts_link('« Older Entries') ?></div>
|
|
|
|
<div class="alignright"><?php previous_posts_link('Newer Entries »') ?></div>
|
2005-01-04 00:20:06 -05:00
|
|
|
</div>
|
2006-02-12 02:53:23 -05:00
|
|
|
|
2005-01-04 00:20:06 -05:00
|
|
|
<?php else : ?>
|
2005-01-01 21:47:45 -05:00
|
|
|
|
2005-01-04 00:20:06 -05:00
|
|
|
<h2 class="center">Not Found</h2>
|
2005-02-27 12:04:45 -05:00
|
|
|
<p class="center">Sorry, but you are looking for something that isn't here.</p>
|
2008-10-17 16:39:56 -04:00
|
|
|
<?php get_search_form(); ?>
|
2005-01-01 21:47:45 -05:00
|
|
|
|
2005-01-04 00:20:06 -05:00
|
|
|
<?php endif; ?>
|
2005-01-01 21:47:45 -05:00
|
|
|
|
2005-01-04 00:20:06 -05:00
|
|
|
</div>
|
2005-01-01 21:47:45 -05:00
|
|
|
|
2005-01-04 00:20:06 -05:00
|
|
|
<?php get_sidebar(); ?>
|
2005-01-01 21:47:45 -05:00
|
|
|
|
2005-02-27 12:04:45 -05:00
|
|
|
<?php get_footer(); ?>
|