-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
40 lines (35 loc) · 1.53 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
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- Tell the browser to be responsive to screen width -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<!-- Favicon icon -->
<link rel="icon" type="image/png" sizes="16x16" href="assets/images/favicon.png">
<title>404 - NOT FOUND</title>
<!-- Bootstrap Core CSS -->
<link href="/static/libs/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="/static/self/css/error.css" rel="stylesheet">
<!-- You can change the theme colors from here -->
<link href="/static/self/css/error-blue.css" id="theme" rel="stylesheet">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
</head>
<body class="fix-header card-no-border">
<section id="wrapper" class="error-page">
<div class="error-box">
<div class="error-body text-center">
<h1>404</h1>
<h3 class="text-uppercase">Page Not Found !</h3>
<p class="text-muted m-t-30 m-b-30">YOU SEEM TO BE TRYING TO FIND HIS WAY HOME</p>
<a href="/" class="btn btn-info btn-rounded waves-effect waves-light m-b-40">返回主页</a> </div>
<!-- Footer START -->
<?php include('home/partials/footer.php'); ?>
<!-- Footer END -->
</div>
</section>
</body>
</html>