-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpost.php
34 lines (28 loc) · 1.23 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
<?php if (!defined('__TYPECHO_ROOT_DIR__')) exit; ?>
<?php $this->need('header.php'); ?>
<main class="container mx-auto">
<article>
<div><h2><?php $this->title() ?></h2></div>
<div class="post_info">本文地址:<a href="<?php $this->permalink() ?>"><?php $this->permalink() ?></a></div>
<div class="post_info" itemprop="author">作者:<a href="<?php $this->author->permalink(); ?>"><?php $this->author(); ?></a>
发布日期:<time datetime="<?php $this->date('c'); ?>" itemprop="datePublished"><?php $this->date(); ?></time></div>
<!-- div class="post_info">标签: <?php $this->tags(',', true, 'none'); ?></div -->
<div class="post_info">分类: <?php $this->category(','); ?></div>
<div class="post_content">
<?php $this->content(); ?>
</div>
</article>
<ul class="post_near">
<li>上一篇: <?php $this->thePrev('%s','没有了'); ?></li>
<li>下一篇: <?php $this->theNext('%s','没有了'); ?></li>
</ul>
</main>
<section class="container mx-auto">
<?php include('comments.php'); ?>
</section>
<section class="sidebar_box">
<div class="container mx-auto sidebar">
<?php $this->need('sidebar.php'); ?>
</div>
</section>
<?php $this->need('footer.php'); ?>