forked from ncccode/echo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
post.php
55 lines (51 loc) · 2.32 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
<?php if (!defined('__TYPECHO_ROOT_DIR__')) exit; ?>
<?php $this->need('header.php'); ?>
<div class="layui-container">
<div class="layui-row layui-col-space15 main">
<div class="map">
<span class="layui-breadcrumb">
<a href="<?php $this->options->siteUrl(); ?>"><?php _e('首页'); ?></a>
<?php $this->category(','); ?>
<a><cite>正文</cite></a>
</span>
</div>
<div class="layui-col-md9 layui-col-lg9">
<div class="title-article">
<h1><?php $this->title() ?></h1>
<div class="title-msg">
<span><i class="layui-icon"></i> <?php $this->author(); ?></span>
<span><i class="layui-icon"></i> <?php $this->date('Y-m-d A'); ?> </span>
<span><i class="layui-icon"></i> <?php get_post_view($this); ?>℃</span>
<span><i class="layui-icon"></i> <?php $this->commentsNum('%d'); ?>条</span>
</div>
</div>
<div class="text" itemprop="articleBody">
<?php $this->content(); ?>
</div>
<div class="tags-text">
<i class="layui-icon"></i><?php _e('标签: '); ?><?php $this->tags(', ', true, 'none'); ?>
</div>
<div class="copy-text">
<div>
<p>非特殊说明,本博所有文章均为博主原创。</p>
<p class="hidden-xs">如若转载,请注明出处:<a href="<?php $this->permalink() ?>"><?php $this->permalink() ?></a> </p>
</div>
</div>
<div class="page-text">
<div>
<span class="layui-badge layui-bg-gray">上一篇</span>
<?php $this->thePrev('%s','没有了'); ?>
</div>
<div>
<span class="layui-badge layui-bg-gray">下一篇</span>
<?php $this->theNext('%s','没有了'); ?>
</div>
</div>
<div class="comment-text layui-form">
<?php $this->need('comments.php'); ?>
</div>
</div>
<?php $this->need('sidebar.php'); ?>
</div>
</div>
<?php $this->need('footer.php'); ?>