-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpost.php
52 lines (52 loc) · 2.71 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
<?php
if (!defined('__TYPECHO_ROOT_DIR__')) exit;
$this->need('head.php');
$this->need('nav.php');
?>
<?php $this->header(); ?>
<div id="pjax">
<header class="intro-header relate" style="background-image: url('<?php $this->options->backgroundImage();?>');">
<div class="mdui-container">
<div class="post-heading" style="text-align:center">
<h1 class="header-title mdui-center">
<?php $this->title() ?>
</h1>
<div class="mdui-center">
<span class="badge mdui-color-indigo-accent"><i class="mdui-icon material-icons index-icon"></i> <time datetime="<?php $this->date('c'); ?>" itemprop="datePublished"><?php $this->date('Y-m-d'); ?></time></span>
<?php if (isset($this->category)): ?><span class="badge mdui-color-pink-accent"><i class="mdui-icon material-icons index-icon"></i> <?php $this->category(' '); ?></span><?php endif; ?>
<?php if (count($this->tags)): ?><span class="badge mdui-color-blue-accent"><i class="mdui-icon material-icons index-icon"></i><?php $this->tags('</span> <span class="badge mdui-color-blue-accent"><i class="mdui-icon material-icons index-icon"></i>', true, 'none'); ?></span><?php endif; ?>
</div>
</div>
</div>
</header>
<div class="mdui-container blog-content">
<div class="mdui-row">
<div class="mdui-col-md-8 mdui-col-sm-12 mdui-col-offset-md-2">
<article class="mdui-typo" id="post-content">
<?php $this->content(); ?>
</article>
<div class="copy">
<p><strong>本作品采用 <a rel="license" href="https://creativecommons.org/licenses/by-sa/4.0/deed.zh"
target="_blank">知识共享署名-相同方式共享 4.0 国际许可协议</a> 进行许可。
<br>
This work is licensed under a <a rel="license"
href="https://creativecommons.org/licenses/by-sa/4.0/" target="_blank">CC BY-SA 4.0
International License</a> .</strong>
<br>
<strong>本文链接:</strong><a href="<?php $this->permalink() ?>"><?php $this->permalink() ?></a>
</p>
</div>
</div>
<?php if ($this->options->useToc): ?>
<div class="mdui-col-md-2 mdui-hidden-sm-down sticky"><div id="toc"></div></div>
<?php endif; ?>
</div>
</div>
<div class="mdui-container">
<div class="mdui-row">
<div class="mdui-col-md-8 mdui-col-sm-12 mdui-col-offset-md-2">
<?php $this->need('comments.php'); ?>
</div>
</div>
</div>
<?php $this->need('footer.php'); ?>