forked from newraina/typecho-theme-NexTPisces
-
Notifications
You must be signed in to change notification settings - Fork 0
/
post.php
56 lines (54 loc) · 2.48 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php if (!defined('__TYPECHO_ROOT_DIR__')) {
exit;
}
?>
<?php $this->need('header.php'); ?>
<main id="main" class="main">
<div class="main-inner">
<div class="content-wrap">
<div id="content" class="content">
<div id="posts" class="posts-expand">
<article class="post post-type-normal " itemscope itemtype="http://schema.org/Article">
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<?php $this->title() ?>
</h1>
<div class="post-meta">
<span class="post-time">
发表于
<time datetime="<?php $this->date('c'); ?>" itemprop="datePublished"><?php $this->date('Y-m-d'); ?></time>
</span>
<span class="post-category">
| 分类于
<span itemprop="about" itemscope itemtype="https://schema.org/Thing">
<?php $this->category(' , '); ?>
</span>
</span>
<span class="post-comments-count">
|
<a rel="nofollow" href="<?php $this->permalink() ?>#comments"><?php $this->commentsNum('暂无评论', '1 条评论', '%d 条评论'); ?></a>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<?php $this->content(); ?>
</div>
<footer class="post-footer">
<div class="post-nav">
<div class="post-nav-next post-nav-item">
<?php $this->theNext('<i class="fa fa-chevron-left"></i>%s', ''); ?>
</div>
<div class="post-nav-prev post-nav-item">
<?php $this->thePrev('%s<i class="fa fa-chevron-right"></i>', ''); ?>
</div>
</div>
</footer>
</article>
</div>
</div>
<?php $this->need('comments.php'); ?>
</div>
<?php $this->need('sidebar.php'); ?>
</div>
</main>
<?php $this->need('footer.php'); ?>