forked from bhaoo/Cuckoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
31 lines (30 loc) · 1.01 KB
/
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
31
<?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">
<img src="<?php staticFiles('images/404.png') ?>" alt="404" style="width: 400px; height: auto; display: block; margin: auto;"></img>
<div class="archive-title">
<p style="font-size: 24px; font-weight: bold;">喵?!不要看这里喵!这里没有文章喵!!!</p>
</div>
</div>
</div>
<?php $this -> need('includes/sidebar.php'); ?>
</div>
<?php $this -> need('includes/footer.php'); ?>