-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.php
More file actions
35 lines (34 loc) · 987 Bytes
/
404.php
File metadata and controls
35 lines (34 loc) · 987 Bytes
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
<?php if (!defined('__TYPECHO_ROOT_DIR__')) exit; ?>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>404</title>
<style>
html {
padding: 50px 10px;
color: #666;
background: #F6F6F3;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
}
html { font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; }
body {
max-width: 500px;
padding: 30px 20px;
margin: 0 auto;
background: #FFF;
}
.container {
max-width: 380px;
margin: 0 auto;
}
</style>
</head>
<body>
<div class="container">
404 NOT FOUND
<a href="javascript:history.back()" role="button" class="outline"><?php _e('上一页'); ?></a>
</div>
</body>
</html>