-
-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy path404.php
30 lines (29 loc) · 838 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
23
24
25
26
27
28
29
30
<?php
/**
* .______ __ __ ___ ______
* | _ \ | | | | / \ / __ \
* | |_) | | |__| | / ^ \ | | | |
* | _ < | __ | / /_\ \ | | | |
* | |_) | | | | | / _____ \ | `--' |
* |______/ |__| |__| /__/ \__\ \______/
*
* 404
*
* @author Bhao
* @link https://dwd.moe/
* @date 2023-07-19
*/
if(!defined('__TYPECHO_ROOT_DIR__')) exit;
$this -> need('includes/header.php');
?>
<div class="index-container">
<div class="mdui-col-md-8">
<div class="mdui-card archive-card mdui-hoverable">
<div class="archive-title">
<p>不要看这里!这里没有文章呐!</p>
</div>
</div>
</div>
<?php $this -> need('includes/sidebar.php'); ?>
</div>
<?php $this -> need('includes/footer.php'); ?>