-
Notifications
You must be signed in to change notification settings - Fork 0
/
single.php
41 lines (29 loc) · 1.27 KB
/
single.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?php get_header(); ?>
<div id="content">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="navigation">
<div class="alignleft"><?php previous_post_link('- %link', 'older') ?></div>
<div class="alignright"><?php next_post_link('%link -', 'newer') ?></div>
</div>
<div class="post single-post">
<h2 class="posttitle">
<a href="<?php the_permalink() ?>" rel="bookmark" title="permanent link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a>
</h2>
<div class="entry">
<?php the_content(); ?>
<div style="clear:both;"></div>
<p class="postmetadata">
<span title="<?php echo time_since(abs(strtotime($post->post_date_gmt . ' GMT'))) . ' ago'; ?>">
<?php the_time('Y-m-d') ?>
</span> |
<?php the_category(', ') ?> |
<?php comments_popup_link('no comments', '1 comment', '% comments', '', 'comments are closed'); ?>
<?php edit_post_link('edit', ' | ', ''); ?>
</p>
</div>
</div>
<?php comments_template(); ?>
<?php endwhile; else: ?>
<h2 class="pagetitle">no posts found.</h2>
<?php endif; ?>
<?php get_footer(); ?>