This repository has been archived by the owner on Jun 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 64
/
post.php
80 lines (58 loc) · 2.27 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<?php if (!defined('__TYPECHO_ROOT_DIR__')) exit; ?>
<?php $this->need('header.php'); ?>
<main id="main" class="main">
<div class="main-inner">
<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">
|
<?php if(!empty($this->options->next_comments)): ?>
<a rel="nofollow" href="<?php $this->permalink() ?>#comments"><span class="ds-thread-count" data-thread-key="<?php echo $this->cid;?>" data-count-type="comments"></span></a>
<?php else: ?>
<a rel="nofollow" href="<?php $this->permalink() ?>#comments"><?php $this->commentsNum('暂无评论', '1 条评论', '%d 条评论'); ?></a>
<?php endif; ?>
</span>
</div>
</header>
<div class="post-body">
<span itemprop="articleBody">
<?php $this->content(); ?>
</span>
</div>
<footer class="post-footer">
<div class="post-tags">
<?php $this->tags(' ', true); ?>
</div>
<div class="post-nav">
<div class="post-nav-prev post-nav-item">
<?php $this->thePrev('%s',''); ?>
</div>
<div class="post-nav-next post-nav-item">
<?php $this->theNext('%s',''); ?>
</div>
</div>
</footer>
</article>
</div>
</div>
<?php $this->need('comments.php'); ?>
</div>
<?php $this->need('sidebar.php'); ?>
</main>
<?php $this->need('footer.php'); ?>