diff options
author | Bertrand Jacquin (Beber) <beber.mailing@gmail.com> | 2006-05-07 23:44:47 +0200 |
---|---|---|
committer | beber <beber@meathook.melee> | 2006-05-07 23:44:47 +0200 |
commit | d9be784dfc304b7d69011c66aa0e18089a28fc96 (patch) | |
tree | 1b40831d00c6687a464309bfe1e7870407174018 /blog/themes/else-lightning/single.php | |
parent | add eric website theme as else-default... (diff) | |
download | web-d9be784dfc304b7d69011c66aa0e18089a28fc96.tar.xz |
Move web_site/ to blog/
Diffstat (limited to 'blog/themes/else-lightning/single.php')
-rw-r--r-- | blog/themes/else-lightning/single.php | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/blog/themes/else-lightning/single.php b/blog/themes/else-lightning/single.php new file mode 100644 index 0000000..27954c3 --- /dev/null +++ b/blog/themes/else-lightning/single.php @@ -0,0 +1,34 @@ +<?php get_header(); ?> + + <?php if (have_posts()) : while (have_posts()) : the_post(); ?> + + <div class="post"> + + <?php the_date('m.d.y', '<h1 class="storydate">', '</h1>'); ?> + <h2 id="post-<?php the_ID(); ?>" class="storytitle"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php _e('Permanent link to'); ?> <?php the_title(); ?>"><?php the_title(); ?></a></h2> + <p class="meta"><?php _e('Posted in'); ?> <?php the_category(', ') ?> <?php _e('at'); ?> <?php the_time(); ?> <?php _e('by'); ?> <?php the_author(); ?></p> + + <?php the_content(__('Read the rest of this entry »')); ?> + <?php wp_link_pages(); ?> + + <p class="feedback"> + <a href="<?php the_permalink() ?>" rel="bookmark" title="<?php _e('Permanent link to'); ?> <?php the_title(); ?>" class="permalink"><?php _e('Permalink'); ?></a> + <?php edit_post_link(__('Edit'), ' · ', ''); ?> + </p> + + </div> + + <?php comments_template(); ?> + + <?php endwhile; else: ?> + + <h2><?php _e('Not Found'); ?></h2> + <p><?php _e('Sorry, but the page you requested cannot be found.'); ?></p> + <?php include (TEMPLATEPATH . "/searchform.php"); ?> + + <?php endif; ?> + +<?php get_sidebar(); ?> + +<?php get_footer(); ?> + |