-
Notifications
You must be signed in to change notification settings - Fork 0
/
page.single.php
48 lines (42 loc) · 1.24 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
43
44
45
46
47
48
<?php namespace Habari; ?>
<?php if ( !defined( 'HABARI_PATH' ) ) { die('No direct access'); } ?>
<?php include 'header.php'; ?>
<div id="main-posts">
<div class="<?php echo $page_class?>">
<?php if ( is_array( $post->tags ) && !empty($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-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'; ?>