forked from MoXiaoXi233/PureSuck-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
post.php
106 lines (97 loc) · 4.82 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<?php if (!defined('__TYPECHO_ROOT_DIR__')) exit; ?>
<?php $this->need('header.php'); ?>
<div class="wrapper">
<?php
$hasImg = $this->fields->img ? true : false;
?>
<article class="post <?= $hasImg ? 'post--photo post--cover' : 'post--text'; ?> post--index main-item" data-aos="fade-up" data-aos-anchor-placement="top-bottom">
<div class="post-inner">
<header class="post-item post-header <?= $hasImg ? 'no-bg' : ''; ?>">
<div class="wrapper post-wrapper">
<div class="avatar post-author">
<img src="<?php echo $this->options->authorAvatar ? $this->options->authorAvatar : $this->options->themeUrl('images/avatar.png'); ?>" alt="作者头像" class="avatar-item avatar-img">
<span class="avatar-item">
<?php $this->author(); ?>
</span>
</div>
</div>
</header>
<!-- 大图样式 -->
<?php if ($hasImg): ?>
<figure class="post-media <?= $this->is('post') ? 'single' : ''; ?>">
<img itemprop="image" src="<?php $this->fields->img(); ?>" alt="头图" width="2000" height="800">
</figure>
<?php endif; ?>
<section class="post-item post-body">
<div class="wrapper post-wrapper">
<h1 class="post-title">
<a href="<?php $this->permalink() ?>" title="<?php $this->title() ?>">
<?php $this->title() ?>
</a>
</h1>
<div class="inner-post-wrapper">
<div class="meta post-meta">
<a itemprop="datePublished" href="<?php $this->permalink() ?>"
class="icon-ui icon-ui-date meta-item meta-date">
<span class="meta-count">
<?php $this->date(); ?>
</span>
</a>
<a href="<?php $this->permalink() ?>#comments"
class="icon-ui icon-ui-comment meta-item meta-comment">
<?php $this->commentsNum('暂无评论', '1 条评论', '%d 条评论'); ?>
</a>
</div>
<?php
// 短代码解析,交给 function.php
$content = $this->content;
$content = parseShortcodes($content);
echo $content;
?>
<!-- 判断并显示版权信息 -->
<?php if (!$this->hidden && $this->options->showCopyright == '1'): ?>
<div class="license-info-card">
<div class="license-info-title"><?php $this->title(); ?></div>
<a class="license-info-link" href="#"><?php $this->permalink(); ?></a>
<div class="license-info-meta">
<div>
<span>本文作者</span>
<span><?php $this->author(); ?></span>
</div>
<div>
<span>发布时间</span>
<span><?php $this->date('Y-m-d'); ?></span>
</div>
<div>
<span>许可协议</span>
<a href="https://creativecommons.org/licenses/by-nc-sa/4.0/deed.zh-hans">CC BY-NC-SA 4.0</a>
</div>
</div>
<span class="cc-icon"></span>
</div>
<?php endif; ?>
</div>
</div>
</section>
<section class="post-item post-comments">
<div class="wrapper post-wrapper">
<?php $this->need('comments.php'); ?>
</div>
</section>
</div>
</article>
</div>
<nav class="nav main-pager" role="navigation" aria-label="Pagination" data-js="pager">
<div class="nav main-lastinfo">
<span class="nav-item-alt">
<?php
$options = Typecho_Widget::widget('Widget_Options');
if (!empty($options->footerInfo)) {
echo $options->footerInfo;
}
?> </span>
</div>
</nav>
</main>
<?php $this->need('sidebar.php'); ?>
<?php $this->need('footer.php'); ?>