-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
96 lines (80 loc) · 2.17 KB
/
404.html
File metadata and controls
96 lines (80 loc) · 2.17 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
<!DOCTYPE html>
<html lang=en>
<meta charset=utf-8>
<meta name=viewport content="initial-scale=1, minimum-scale=1, width=device-width">
<title>Error 404 (Not Found)!!1</title>
<style>
* {
margin: 0;
padding: 0
}
html,
code {
font: 15px/22px arial, sans-serif
}
html {
background: #fff;
color: #222;
padding: 15px
}
body {
margin: 7% auto 0;
max-width: 390px;
min-height: 180px;
padding: 30px 0 15px
}
*>body {
background: url(//cdn.arnocellarier.fr/s/ac/cdn./robot.png) 100% 5px no-repeat;
padding-right: 205px
}
p {
margin: 11px 0 22px;
overflow: hidden
}
ins {
color: #777;
text-decoration: none
}
a img {
border: 0
}
@media screen and (max-width:772px) {
body {
background: none;
margin-top: 0;
max-width: none;
padding-right: 0
}
}
#logo {
background: url(//cdn.arnocellarier.fr/s/ac/cdn./arnocl-logo.png) no-repeat;
margin-left: -5px
}
@media only screen and (min-resolution:192dpi) {
#logo {
background: url(//cdn.arnocellarier.fr/s/ac/cdn./arnocl-logo.png) no-repeat 0% 0%/100% 100%;
-moz-border-image: url(//cdn.arnocellarier.fr/s/ac/cdn./arnocl-logo.png) 0
}
}
@media only screen and (-webkit-min-device-pixel-ratio:2) {
#logo {
background: url(//cdn.arnocellarier.fr/s/ac/cdn./arnocl-logo.png) no-repeat;
-webkit-background-size: 100% 100%
}
}
#logo {
display: inline-block;
height: 54px;
width: 150px
}
</style>
<a href=//arnocellarier.fr /><span id=logo aria-label=Arno></span></a>
<p><b>404.</b> <ins>That’s an error.</ins>
<p>The requested URL <code id=path></code> was not found on this server. <ins>That’s all we know.</ins></p>
<script>
const path = window.location.pathname;
if (/^\/[a-z]{4}([0-9]{2})?$/.test(path)) {
window.location.href = `https://arno.cl${path}`;
}
document.getElementById('path').innerHTML = path;
</script>