-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path404.html
63 lines (59 loc) · 2.21 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
<!DOCTYPE html><html><head>
<title>Page Not Found · pyinfra Documentation</title>
<style type="text/css">
body {
width: 600px;
margin: 150px auto;
font-family: "Helvetica Neue", Helvetica, "Segoe UI", Arial, freesans, sans-serif;
font-size: 16px;
line-height: 1.6;
}
@keyframes swing {
0% { transform: rotate(0deg); }
20% { transform: rotate(-15deg); }
40% { transform: rotate(10deg); }
60% { transform: rotate(-10deg); }
80% { transform: rotate(5deg); }
100% { transform: rotate(-5deg); }
}
img {
width: 44px;
margin-left: -54px;
animation-name: swing;
-webkit-transform-origin: top center;
transform-origin: top center;
-webkit-animation-name: swing;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.red {
color: red;
}
a {
color: #53ac63;
text-decoration: none;
}
a:hover, a:focus {
text-decoration: underline;
text-decoration-color: #E7E7E7;
text-decoration-thickness: 2px;
}
</style>
</head>
<body>
<h1><img src="/en/latest/_static/logo_small.png" /> <span class="red">ERROR</span> Page Not Found</h1>
<p>We couldn't find this page in the pyinfra documentation. If you thing this is a bug, please consider <a href="https://github.com/Fizzadar/pyinfra/issues/new/choose">submitting an issue on GitHub</a>. Otherwise, here's the links to the correct documentation indexes:</p>
<ul>
<li><a href="/en/3.x"><strong>v3.x</strong></a> (latest release)</li>
<li><a href="/en/2.x"><strong>v2.x</strong></a> (latest release)</li>
<li><a href="/en/latest"><strong>latest</strong></a> (upcoming release)</li>
</ul>
<p>Here's links to the old versions of this documentation if needed:</p>
<ul>
<li><a href="/en/1.x">v1.x</a></li>
<li><a href="/en/0.x">v0.x</a></li>
</ul>
</body>
</html>