-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.php
More file actions
126 lines (101 loc) · 4.01 KB
/
404.php
File metadata and controls
126 lines (101 loc) · 4.01 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link rel="stylesheet" href="<?php echo get_template_directory_uri(); ?>/404/css/main.css" type="text/css" media="screen, projection" /> <!-- main stylesheet -->
<link rel="stylesheet" type="text/css" media="all" href="<?php echo get_template_directory_uri(); ?>/404/css/tipsy.css" /> <!-- Tipsy implementation -->
<!--[if lt IE 9]>
<link rel="stylesheet" type="text/css" href="404/css/ie8.css" />
<![endif]-->
<script type="text/javascript" src="<?php echo get_template_directory_uri(); ?>/404/scripts/jquery-1.7.2.min.js"></script> <!-- uiToTop implementation -->
<script type="text/javascript" src="<?php echo get_template_directory_uri(); ?>/404/scripts/custom-scripts.js"></script>
<script type="text/javascript" src="<?php echo get_template_directory_uri(); ?>/404/scripts/jquery.tipsy.js"></script> <!-- Tipsy -->
<script type="text/javascript">
$(document).ready(function(){
universalPreloader();
});
$(window).load(function(){
//remove Universal Preloader
universalPreloaderRemove();
rotate();
dogRun();
dogTalk();
//Tipsy implementation
$('.with-tooltip').tipsy({gravity: $.fn.tipsy.autoNS});
});
</script>
<title>PAGE LOST - 404</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /></head>
<body>
<!-- Universal preloader -->
<div id="universal-preloader">
<div class="preloader">
<img src="<?php echo get_template_directory_uri(); ?>/404/images/universal-preloader.gif" alt="universal-preloader" class="universal-preloader-preloader" />
</div>
</div>
<!-- Universal preloader -->
<div id="wrapper">
<!-- 404 graphic -->
<div class="graphic"></div>
<!-- 404 graphic -->
<!-- Not found text -->
<div class="not-found-text">
<h1 class="not-found-text">Page Was Not Found, Sorry!</h1>
<h3 style="color:white;">
<a class="not-found-text" href="javascript:history.go(-1);" title="Return to the last page">返回上一页面</a> | <a class="not-found-text" href="<?php echo home_url(); ?>" class="with-tooltip" title="Return to the home">返回首页</a> | <a href="mailto:messikiller@aliyun.com" class="not-found-text" title="mail to the blogger">联系博主</a>
<h3>
</div>
<!-- Not found text -->
<div class="dog-wrapper">
<!-- dog running -->
<div class="dog"></div>
<!-- dog running -->
<!-- dog bubble talking -->
<div class="dog-bubble">
</div>
<!-- The dog bubble rotates these -->
<div class="bubble-options">
<p class="dog-bubble">
Are you lost, bud? No worries, I'm an excellent guide!
</p>
<p class="dog-bubble">
<br />
Arf! Arf!
</p>
<p class="dog-bubble">
<br />
Don't worry! I'm on it!
</p>
<p class="dog-bubble">
I wish I had a cookie<br /><img style="margin-top:8px" src="<?php echo get_template_directory_uri(); ?>/404/images/cookie.png" alt="cookie" />
</p>
<p class="dog-bubble">
<br />
Geez! This is pretty tiresome!
</p>
<p class="dog-bubble">
<br />
Am I getting close?
</p>
<p class="dog-bubble">
Or am I just going in circles? Nah...
</p>
<p class="dog-bubble">
<br />
OK, I'm officially lost now...
</p>
<p class="dog-bubble">
I think I saw a <br /><img style="margin-top:8px" src="<?php echo get_template_directory_uri(); ?>/404/images/cat.png" alt="cat" />
</p>
<p class="dog-bubble">
What are we supposed to be looking for, anyway? @_@
</p>
</div>
<!-- The dog bubble rotates these -->
<!-- dog bubble talking -->
</div>
<!-- planet at the bottom -->
<div class="planet"></div>
<!-- planet at the bottom -->
</div>
</body>
</html>