forked from crazystear/Practice01
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.php
22 lines (22 loc) · 808 Bytes
/
404.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
if (!defined('__TYPECHO_ROOT_DIR__')) exit;
$this->need('header.php');
?>
<div class="site-wrap">
<div class="flex-left">
<div class="left-side">
<div class="inside">
<div id="content" class="content">
<?php while($this->next()): ?>
<?php include("post_common.php"); ?>
<?php endwhile; ?>
</div>
<div id="ajaxloadpost" style="padding: 0 10px;">
<?php $this->pageLink('下一页','next'); ?>
</div>
<div id="showtext"></div>
</div>
</div>
</div>
<?php $this->need('sidebar.php'); ?>
<?php $this->need('footer.php'); ?>