forked from Hanson/typecho_material_theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpost.php
24 lines (21 loc) · 1.17 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
<?php $this->need('header.php'); ?>
<div class="container" id="main">
<div class="row">
<div class="col-md-9">
<div class="panel panel-default">
<div class="panel-body">
<h3 class="post-title"><a href="<?php $this->permalink() ?>" target="_blank"><?php $this->title() ?></a></h3>
<div class="post-meta">
<span>作者:<a href="<?php $this->author->permalink(); ?>"><?php $this->author(); ?></a> | </span>
<span>时间:<?php $this->date('F j, Y'); ?> | </span>
<span>分类:<?php $this->category(','); ?> | </span>
<span>评论:<a href="<?php $this->permalink() ?>"><?php $this->commentsNum('%d 评论'); ?></a> </span>
</div>
<div class="post-content"><?php $this->content('Continue Reading...'); ?></div>
</div>
</div>
<p class="tags">标签:<?php $this->tags(' , ', true, ''); ?></p>
<?php $this->need('comments.php'); ?>
</div>
<?php $this->need('sidebar.php'); ?>
<?php $this->need('footer.php'); ?>