-
Notifications
You must be signed in to change notification settings - Fork 1k
/
404.html
77 lines (75 loc) · 2.45 KB
/
404.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta http-equiv="x-dns-prefetch-control" content="off"/>
<meta name="robots" content="noindex"/>
<meta name="viewport" content="width=320, initial-scale=0.5">
<style>
html {
height: 100%;
-webkit-font-smoothing: antialiased;
margin: 0;
padding: 0;
border: 0;
overflow-y: scroll
}
body {
height: 100%;
font-family: 'Helvetica Neue',Helvetica,sans-serif;
text-align: center;
margin: 0;
padding: 0;
border: 0;
background-color: #304332;
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#304332), to(#172018));
background: -moz-linear-gradient(center top , #304332 0%, #172018 100%) repeat scroll 0 0 transparent;
}
#container {
width: 500px
}
h1 {
color: #fff;
font-size: 30px;
font-weight: bold;
text-shadow: 0 1px 4px rgba(0,0,0,0.68);
letter-spacing: -1px;
margin: 0;
width: 500px;
}
.description {
color: rgba(255, 255, 255, .8);
font-size: 18px;
line-height: 24px;
text-shadow: 0 1px 0 rgba(0,0,0,0.33);
width: 450px;
}
.description a {
color: #849EDB;
text-decoration: none;
}
.description a:hover {
color: #516BB7;
}
.error404 {
color: #C5826E;
}
</style>
<title>404 - NewsBlur can't find that page</title>
</head>
<body>
<table height="100%" width="100%">
<tr>
<td align="center" valign="middle">
<div id="container">
<h1><span class="error404">404</span> · NewsBlur can't find that page</h1>
<div class="description">
<p>Either the URL you accessed doesn't point to anything or there is no site, story, or data with these parameters.</p>
<p><a href="{% url "index" %}">Return to NewsBlur</a></p>
</div>
</div>
</td>
</tr>
</table>
</body>
</html>