forked from baomihuahua/lolimeow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
72 lines (67 loc) · 4.87 KB
/
404.php
File metadata and controls
72 lines (67 loc) · 4.87 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<?php
/**
* @link https://www.boxmoe.com
* @package lolimeow
*/
//boxmoe.com===安全设置=阻止直接访问主题文件
if(!defined('ABSPATH')){echo'Look your sister';exit;}
?>
<html <?php language_attributes(); ?>>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title><?php echo boxmoe_theme_title(); ?></title>
<link rel="icon" href="<?php echo boxmoe_favicon(); ?>" type="image/x-icon">
<?php boxmoe_keywords(); ?>
<?php boxmoe_description(); ?>
<?php ob_start();wp_head();$wp_head_output = ob_get_clean();echo preg_replace('/\n/', "\n ", trim($wp_head_output))."\n ";?>
</head>
<body>
<main>
<div class="container d-flex flex-column overflow-hidden">
<div class="row align-items-center justify-content-center min-vh-100 text-center">
<div class="col-lg-6 col-12">
<div class="position-relative mb-7">
<div class="scene d-none d-lg-block" data-relative-input="true" style="transform: translate3d(0px, 0px, 0px) rotate(0.0001deg); transform-style: preserve-3d; backface-visibility: hidden; position: relative; pointer-events: none;">
<div class="position-absolute top-0" data-depth="0.5" style="transform: translate3d(0px, 0px, 0px); transform-style: preserve-3d; backface-visibility: hidden; position: relative; display: block; left: 0px; top: 0px;">
<img src="<?php echo boxmoe_theme_url(); ?>/assets/images/error/stars.svg" alt="">
</div>
</div>
<div class="scene d-none d-lg-block" data-relative-input="true" style="transform: translate3d(0px, 0px, 0px) rotate(0.0001deg); transform-style: preserve-3d; backface-visibility: hidden; position: relative; pointer-events: none;">
<div class="position-absolute" data-depth="0.1" style="transform: translate3d(0px, 0px, 0px); transform-style: preserve-3d; backface-visibility: hidden; position: relative; display: block; left: 0px; top: 0px;">
<img src="<?php echo boxmoe_theme_url(); ?>/assets/images/error/rocket.svg" alt="">
</div>
</div>
<div class="scene d-none d-lg-block" data-relative-input="true" style="transform: translate3d(0px, 0px, 0px) rotate(0.0001deg); transform-style: preserve-3d; backface-visibility: hidden; position: relative; pointer-events: none;">
<div class="position-absolute top-0 start-50 translate-middle" style="margin-top: -80px; margin-left: -80px; transform: translate3d(0px, 0px, 0px); transform-style: preserve-3d; backface-visibility: hidden; position: relative; display: block; left: 0px; top: 0px;" data-depth="0.1">
<img src="<?php echo boxmoe_theme_url(); ?>/assets/images/error/globe.svg" alt="">
</div>
</div>
<div class="scene d-none d-lg-block" data-relative-input="true" style="transform: translate3d(0px, 0px, 0px) rotate(0.0001deg); transform-style: preserve-3d; backface-visibility: hidden; position: relative; pointer-events: none;">
<div class="position-absolute start-50" data-depth="0.1" style="transform: translate3d(0px, 0px, 0px); transform-style: preserve-3d; backface-visibility: hidden; position: relative; display: block; left: 0px; top: 0px;">
<img src="<?php echo boxmoe_theme_url(); ?>/assets/images/error/astronut.svg" alt="" style="top: -110px; position: absolute; bottom: 0">
</div>
</div>
<div class="position-relative z-n1">
<img src="<?php echo boxmoe_theme_url(); ?>/assets/images/error/404-number.svg" alt="" class="img-fluid">
</div>
<div class="scene d-none d-lg-block" data-relative-input="true" style="transform: translate3d(0px, 0px, 0px) rotate(0.0001deg); transform-style: preserve-3d; backface-visibility: hidden; position: relative; pointer-events: none;">
<div class="position-absolute start-100 bottom-0" style="transform: translate3d(0px, 0px, 0px); transform-style: preserve-3d; backface-visibility: hidden; position: relative; display: block; left: 0px; top: 0px;" data-depth="0.1">
<img src="<?php echo boxmoe_theme_url(); ?>/assets/images/error/planet.svg" alt="">
</div>
</div>
</div>
<h2>页面未找到</h2>
<p>您要查找的页面不存在。</p>
<a href="<?php echo home_url(); ?>" class="btn btn-primary">返回首页</a>
</div>
</div>
</div>
</main>
<?php
ob_start();
wp_footer();
$wp_footer_output = ob_get_clean();
echo preg_replace('/\n/', "\n ", trim($wp_footer_output))."\n ";
?>
</body></html>