-
Notifications
You must be signed in to change notification settings - Fork 0
/
page.single.php
42 lines (33 loc) · 1.32 KB
/
page.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
<?php if ( !defined( 'HABARI_PATH' ) ) { die('No direct access'); } ?>
<?php $theme->display ('header'); ?>
<!-- page.single -->
<div class="page">
<div id="primary">
<div id="post-<?php echo $post->id; ?>" class="<?php echo $post->statusname; ?>">
<div class="entry-head">
<h3 class="entry-title"><?php _e('Page:', 'k2'); ?> <a href="<?php echo $post->permalink; ?>" title="<?php echo $post->title; ?>"><?php echo $post->title_out; ?></a></h3>
<small class="entry-meta">
<span class="chronodata"><abbr class="published"><?php $post->pubdate->out(); ?></abbr></span> <?php if ( $show_author ) { _e('by %s', array( $post->author->displayname ), 'k2' ); } ?>
<?php echo $theme->comments_link($post); ?>
<?php if ( $loggedin ) { ?>
<span class="entry-edit"><a href="<?php echo $post->editlink; ?>" title="<?php _e('Edit post'); ?>"><?php _e('Edit', 'k2'); ?></a></span>
<?php } ?>
<?php if ( count( $post->tags ) > 0 ) { ?>
<span class="entry-tags"><?php echo $post->tags_out; ?></span>
<?php } ?>
</small>
</div>
<div class="entry-content">
<?php echo $post->content_out; ?>
</div>
</div>
<?php $theme->display ( 'comments' ); ?>
</div>
<hr>
<div class="secondary">
<?php $theme->display ('sidebar'); ?>
</div>
<div class="clear"></div>
</div>
<!-- /page.single -->
<?php $theme->display ( 'footer' ); ?>