-
Notifications
You must be signed in to change notification settings - Fork 3
/
post.php
31 lines (29 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
25
26
27
28
29
30
31
<?php if (!defined('__TYPECHO_ROOT_DIR__')) exit; ?>
<?php $this->need('header.php'); ?>
<nav class="nav">
<ul class="flat">
<li class="active"><a href="<?php $this->options->siteUrl(); ?>">首页</a></li>
<?php $this->widget('Widget_Contents_Page_List')
->parse('<li class="active"><a href="{permalink}">{title}</a></li> '); ?></ul>
</nav>
</div>
<h1 class="post-title" itemprop="name headline">
<?php $this->title() ?>
</h1>
<div class="meta">
<span><?php $this->date('F j, Y'); ?></span>
<?php _e('作者: '); ?><?php $this->author(); ?>
<?php _e('分类: '); ?><?php $this->category(','); ?>
</span></ul>
</div>
<div class="post-content" itemprop="articleBody">
<?php $this->content(); ?>
<div class="post-tags">
<nav class="nav tags">
<ul class="flat">
<?php _e(''); ?><?php $this->tags(' ', true, ''); ?>
</ul>
</nav>
</div>
</div><!-- end #main-->
<?php $this->need('footer.php'); ?>