-
Notifications
You must be signed in to change notification settings - Fork 4
/
post.php
32 lines (29 loc) · 1.13 KB
/
post.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
<?php $this->need('header.php'); ?>
<div class="row">
<div class="span9" id="content">
<div class="post">
<div class="page-header">
<h1>
<?php $this->title() ?>
<small></small>
</h1>
<h6>
<span><?php _e('作者:'); ?><?php $this->author(); ?></span>
<span><?php _e('发布时间:'); ?><?php $this->date('F j, Y'); ?></span>
<span><?php _e('分类:'); ?><?php $this->category(','); ?></span>
</h6>
</div>
<div class="entry-content"><?php $this->content(); ?></div>
<div class="entry-tags">
<?php _e('标签'); ?>:
<span class="label label-info">
<?php $this->tags('</span> <span class="label label-info">', true, '无'); ?>
</span>
</div>
</div>
<hr class="soften" />
<?php $this->need('comments.php'); ?>
</div><!-- end #content-->
<?php $this->need('sidebar.php'); ?>
</div>
<?php $this->need('footer.php'); ?>