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