-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpage.php
26 lines (24 loc) · 1.02 KB
/
page.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
<?php if (!defined('__TYPECHO_ROOT_DIR__')) exit; ?>
<?php $this->need('header.php'); ?>
<div class="container post">
<section class="article">
<div class="title"><?php $this->title() ?></div>
<div class="date">写于<?php $this->date('Y年m月d日'); ?></div>
<div class="content">
<?php $this->content(); ?>
</div>
<div class="tags">
<?php printTag($this); ?>
</div>
</section>
</div>
<div class="container">
<ul class="nav">
<?php $this->thePrev('<li>上一篇:%s </li>', '', array('title' => '', 'tagClass' => 'next')); ?>
<?php $this->theNext(' <li>下一篇:%s </li>', '', array('title' => '', 'tagClass' => 'pre')); ?>
</ul>
<div class="comments">
<?php $this->need('vcomments.php'); ?>
</div>
</div>
<?php $this->need('footer.php'); ?>