-
Notifications
You must be signed in to change notification settings - Fork 0
/
entry.single.php
66 lines (60 loc) · 2.12 KB
/
entry.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?php namespace Habari; ?>
<?php if ( !defined( 'HABARI_PATH' ) ) { die('No direct access'); } ?>
<?php include 'header.php'; ?>
<div id="main-posts">
<?php if ($show_post_nav) : ?>
<div class="post-nav">
<?php if ( $previous = $post->descend() ): ?>
<div class="left"> « <a href="<?php echo $previous->permalink ?>" title="<?php echo $previous->slug ?>"><?php echo $previous->title ?></a></div>
<?php endif; ?>
<?php if ( $next = $post->ascend() ): ?>
<div class="right"><a href="<?php echo $next->permalink ?>" title="<?php echo $next->slug ?>"><?php echo $next->title ?></a> »</div>
<?php endif; ?>
<div class="clear"></div>
</div>
<?php endif; ?>
<div class="<?php echo $post_class?>">
<?php if ( count($post->tags) ) : ?>
<div class="post-tags">
<?php echo $post->tags_out;?>
</div>
<?php endif; ?>
<div class="post-title">
<h3>
<a href="<?php echo $post->permalink; ?>" title="<?php echo $post->title; ?>"><?php echo $post->title_out; ?></a>
</h3>
</div>
<div class="post-sup">
<span class="post-date"><?php $post->pubdate->out(); ?></span>
<span class="post-comments-link">
<a href="<?php echo $post->permalink.'#comment-form'; ?>" title="<?php _e( "Comments on this post" ); ?>"><?php echo $theme->post_comments_link( $post ); ?></a>
</span>
<span class="clear"></span>
</div>
<div class="post-entry">
<?php echo $post->content_out; ?>
</div>
<div class="post-footer">
<?php if ( $loggedin ) : ?>
<span class="post-edit">
<a href="<?php echo $post->editlink; ?>" title="<?php _e( "Edit post" ); ?>"><?php _e( "Edit" ); ?></a>
</span>
<?php endif; ?>
</div>
</div>
</div>
</div>
<div id="top-secondary">
<?php include'sidebar.php' ?>
</div>
<div class="clear"></div>
</div>
</div>
<div id="page-bottom">
<div id="wrapper-bottom">
<div id="bottom-primary">
<?php include 'comments.php'; ?>
<!-- comment form -->
<?php include 'commentform.php'; ?>
<!-- /comment form -->
<?php include 'footer.php'; ?>