-
Notifications
You must be signed in to change notification settings - Fork 0
/
post.php
20 lines (20 loc) · 859 Bytes
/
post.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php $this->need('page/header.php'); ?>
<body>
<div class="content">
<article class="article">
<h1 class="article-title"><a itemprop="url" href="<?php $this->permalink() ?>"><?php $this->title() ?></a></h1>
<p class="article-meta">
<span><?php _e('发布时间:'); ?><?php $this->date('F j, Y'); ?></span>
<!--<span><?php _e('分类:'); ?><?php $this->category(','); ?></span>-->
<!--<span><?php _e('标签:'); ?><?php $this->tags(', ', true, '无'); ?></span>-->
</p>
<div class="article-content">
<?php $this->content(); ?>
</div>
</article>
</div>
<div class="pagination">
<div class="next"><a class="next" title="" href="#" onclick="return history.back();">返回</a></div>
</div>
</body>
<?php $this->need('page/footer.php'); ?>