-
Notifications
You must be signed in to change notification settings - Fork 220
/
40x.html
87 lines (77 loc) · 1.78 KB
/
40x.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
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Error 404</title>
<link rel="shortcut icon" href="/devtools/wpf/favicon.ico" />
<style>
html {
font-family: Roboto, Helvetica, Arial, sans-serif;
line-height: 1.5em;
}
.content {
max-width: 768px;
padding-left: 200px;
margin: 200px auto;
position: relative;
}
.ninja {
position: absolute;
left: 0;
top: 0;
}
h1 {
margin: 0 0 40px;
font: 600 60px/.9 Roboto, Helvetica, Arial, sans-serif;
letter-spacing: -.03em;
}
h2 {
margin: 0 0 20px;
font: 400 28px/1 Roboto, Helvetica, Arial, sans-serif;
letter-spacing: -.035em;
}
ul {
padding: 0 0 0 1.3em;
margin: 0;
}
a,
a:visited {
color: #0487c4;
text-decoration: none;
transition: color .2s ease, opacity .2s ease;
}
a:hover,
a:focus {
color: #036c9c;
text-decoration: underline;
}
</style>
</head>
<body>
<div class="content">
<img class="ninja" src="/devtools/wpf/images/icons/ninja-icon.png" />
<h1>
Oh, no!
<br /> It seems we've lost this page
</h1>
<h2>
Things you can try:
</h2>
<ul>
<li>
<a href="#" onclick="history.go(-1); return false;">Go back</a> and try another way</li>
<li>Head to the
<a id="link" href="/devtools/wpf/">Documentation Homepage</a>
</li>
<li>Cheer up and
<a href="http://www.telerik.com/download">try our products</a>. Some of them are free!</li>
</ul>
</div>
<script>
if (window.location.href.indexOf("silverlight") > -1 )
{
document.getElementById("link").setAttribute('href', "/devtools/silverlight/");
}
</script>
</body>
</html>