2008-09-27 11:49:27 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Default_Theme
|
|
|
|
*/
|
|
|
|
|
|
|
|
get_header();
|
|
|
|
?>
|
2004-12-30 12:14:01 +01:00
|
|
|
|
2009-04-16 18:42:32 +02:00
|
|
|
<div id="content" class="widecolumn" role="main">
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2006-11-19 08:56:05 +01:00
|
|
|
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2004-12-30 12:14:01 +01:00
|
|
|
<div class="navigation">
|
2005-04-17 19:09:19 +02:00
|
|
|
<div class="alignleft"><?php previous_post_link('« %link') ?></div>
|
|
|
|
<div class="alignright"><?php next_post_link('%link »') ?></div>
|
2004-12-30 12:14:01 +01:00
|
|
|
</div>
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2008-08-13 23:58:06 +02:00
|
|
|
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
|
2008-03-11 01:46:58 +01:00
|
|
|
<h2><?php the_title(); ?></h2>
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2006-07-26 19:43:41 +02:00
|
|
|
<div class="entry">
|
2004-12-30 12:14:01 +01:00
|
|
|
<?php the_content('<p class="serif">Read the rest of this entry »</p>'); ?>
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2006-10-02 20:03:34 +02:00
|
|
|
<?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
|
2007-03-31 07:21:47 +02:00
|
|
|
<?php the_tags( '<p>Tags: ', ', ', '</p>'); ?>
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2005-01-24 09:15:10 +01:00
|
|
|
<p class="postmetadata alt">
|
2004-12-30 12:14:01 +01:00
|
|
|
<small>
|
|
|
|
This entry was posted
|
2005-01-24 09:15:10 +01:00
|
|
|
<?php /* This is commented, because it requires a little adjusting sometimes.
|
2004-12-30 12:14:01 +01:00
|
|
|
You'll need to download this plugin, and follow the instructions:
|
2009-03-03 23:08:50 +01:00
|
|
|
http://binarybonsai.com/wordpress/time-since/ */
|
2006-11-19 08:56:05 +01:00
|
|
|
/* $entry_datetime = abs(strtotime($post->post_date) - (60*120)); echo time_since($entry_datetime); echo ' ago'; */ ?>
|
2004-12-30 12:14:01 +01:00
|
|
|
on <?php the_time('l, F jS, Y') ?> at <?php the_time() ?>
|
|
|
|
and is filed under <?php the_category(', ') ?>.
|
2008-01-31 23:15:49 +01:00
|
|
|
You can follow any responses to this entry through the <?php post_comments_feed_link('RSS 2.0'); ?> feed.
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2009-04-17 07:30:09 +02:00
|
|
|
<?php if ( comments_open() && pings_open() ) {
|
2004-12-30 12:14:01 +01:00
|
|
|
// Both Comments and Pings are open ?>
|
2007-08-30 01:08:44 +02:00
|
|
|
You can <a href="#respond">leave a response</a>, or <a href="<?php trackback_url(); ?>" rel="trackback">trackback</a> from your own site.
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2009-04-17 07:30:09 +02:00
|
|
|
<?php } elseif ( !comments_open() && pings_open() ) {
|
2004-12-30 12:14:01 +01:00
|
|
|
// Only Pings are Open ?>
|
2007-08-30 01:08:44 +02:00
|
|
|
Responses are currently closed, but you can <a href="<?php trackback_url(); ?> " rel="trackback">trackback</a> from your own site.
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2009-04-17 07:30:09 +02:00
|
|
|
<?php } elseif ( comments_open() && !pings_open() ) {
|
2004-12-30 12:14:01 +01:00
|
|
|
// Comments are open, Pings are not ?>
|
|
|
|
You can skip to the end and leave a response. Pinging is currently not allowed.
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2009-04-17 07:30:09 +02:00
|
|
|
<?php } elseif ( !comments_open() && !pings_open() ) {
|
2004-12-30 12:14:01 +01:00
|
|
|
// Neither Comments, nor Pings are open ?>
|
2006-02-12 08:53:23 +01:00
|
|
|
Both comments and pings are currently closed.
|
|
|
|
|
2008-03-31 19:02:41 +02:00
|
|
|
<?php } edit_post_link('Edit this entry','','.'); ?>
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2004-12-30 12:14:01 +01:00
|
|
|
</small>
|
|
|
|
</p>
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2004-12-30 12:14:01 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2004-12-30 12:14:01 +01:00
|
|
|
<?php comments_template(); ?>
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2004-12-30 12:14:01 +01:00
|
|
|
<?php endwhile; else: ?>
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2005-02-27 18:04:45 +01:00
|
|
|
<p>Sorry, no posts matched your criteria.</p>
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2004-12-30 12:14:01 +01:00
|
|
|
<?php endif; ?>
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2004-12-30 12:14:01 +01:00
|
|
|
</div>
|
|
|
|
|
2005-02-27 18:04:45 +01:00
|
|
|
<?php get_footer(); ?>
|