Add footers

As you can see, deployment is not streamlined yet lol.
Anyway, fixes #1 and lets me try out the new deployment scripts.
This commit is contained in:
Florine W. Dekker 2021-04-14 18:51:50 +02:00
parent 3abf6daf24
commit 4ed6914c35
Signed by: FWDekker
GPG Key ID: B1B567AF58D6EE0F
25 changed files with 1100 additions and 276 deletions

View File

@ -1,7 +1,10 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="author" content="Felix W. Dekker" />
<meta name="theme-color" content="#0033cc" />
<title>Bad request | FWDekker</title>
@ -15,22 +18,52 @@
color: black;
}
#wrapper {
margin: auto;
padding-top: 50px;
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
main {
display: flex;
flex-direction: column;
margin: 0 auto;
width: 50%;
max-width: 800px;
min-width: 400px;
min-height: 100%;
}
#contents {
flex: 1;
margin: 5rem 0;
}
footer {
color: #606c76;
margin-bottom: 3rem;
}
</style>
</head>
<body>
<div id="wrapper">
<h1><a href="https://fwdekker.com/">FWDekker</a></h1>
<b>Bad request</b> (400)<br /><br />
Sorry for the inconvenience.
You may want to try going to <a href="https://fwdekker.com/">this website's homepage</a>.
</div>
<main>
<section id="contents">
<h1><a href="https://fwdekker.com/">FWDekker</a></h1>
<b>Bad request</b> (400)<br /><br />
Sorry for the inconvenience.
You may want to try going to <a href="https://fwdekker.com/">this website's homepage</a>.
</section>
<footer>
Made by <a href="https://fwdekker.com/">Felix W. Dekker</a><span>.
Licensed under the
<a href="https://git.fwdekker.com/FWDekker/error-pages/src/branch/master/LICENSE">MIT License</a>.
Source code available on </span><a href="https://git.fwdekker.com/FWDekker/error-pages/">git</a>.
Consider reading the <a href="https://fwdekker.com/privacy/">privacy policy</a>.
<div style="float: right;">v1.2.0</div>
</footer>
</main>
</body>
</html>

View File

@ -1,7 +1,10 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="author" content="Felix W. Dekker" />
<meta name="theme-color" content="#0033cc" />
<title>Unauthorized | FWDekker</title>
@ -15,23 +18,53 @@
color: black;
}
#wrapper {
margin: auto;
padding-top: 50px;
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
main {
display: flex;
flex-direction: column;
margin: 0 auto;
width: 50%;
max-width: 800px;
min-width: 400px;
min-height: 100%;
}
#contents {
flex: 1;
margin: 5rem 0;
}
footer {
color: #606c76;
margin-bottom: 3rem;
}
</style>
</head>
<body>
<div id="wrapper">
<h1><a href="https://fwdekker.com/">FWDekker</a></h1>
<b>Unauthorized</b> (401)<br /><br />
Sorry for the inconvenience.
You may want to try going to <a href="https://fwdekker.com/">this website's homepage</a>.
</div>
<main>
<section id="contents">
<h1><a href="https://fwdekker.com/">FWDekker</a></h1>
<b>Unauthorized</b> (401)<br /><br />
Sorry for the inconvenience.
You may want to try going to <a href="https://fwdekker.com/">this website's homepage</a>.
</section>
<footer>
Made by <a href="https://fwdekker.com/">Felix W. Dekker</a><span>.
Licensed under the
<a href="https://git.fwdekker.com/FWDekker/error-pages/src/branch/master/LICENSE">MIT License</a>.
Source code available on </span><a href="https://git.fwdekker.com/FWDekker/error-pages/">git</a>.
Consider reading the <a href="https://fwdekker.com/privacy/">privacy policy</a>.
<div style="float: right;">v1.2.0</div>
</footer>
</main>
</body>
</html>

View File

@ -1,7 +1,10 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="author" content="Felix W. Dekker" />
<meta name="theme-color" content="#0033cc" />
<title>Payment required | FWDekker</title>
@ -15,22 +18,52 @@
color: black;
}
#wrapper {
margin: auto;
padding-top: 50px;
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
main {
display: flex;
flex-direction: column;
margin: 0 auto;
width: 50%;
max-width: 800px;
min-width: 400px;
min-height: 100%;
}
#contents {
flex: 1;
margin: 5rem 0;
}
footer {
color: #606c76;
margin-bottom: 3rem;
}
</style>
</head>
<body>
<div id="wrapper">
<h1><a href="https://fwdekker.com/">FWDekker</a></h1>
<b>Payment required</b> (402)<br /><br />
Sorry for the inconvenience.
You may want to try going to <a href="https://fwdekker.com/">this website's homepage</a>.
</div>
<main>
<section id="contents">
<h1><a href="https://fwdekker.com/">FWDekker</a></h1>
<b>Payment required</b> (402)<br /><br />
Sorry for the inconvenience.
You may want to try going to <a href="https://fwdekker.com/">this website's homepage</a>.
</section>
<footer>
Made by <a href="https://fwdekker.com/">Felix W. Dekker</a><span>.
Licensed under the
<a href="https://git.fwdekker.com/FWDekker/error-pages/src/branch/master/LICENSE">MIT License</a>.
Source code available on </span><a href="https://git.fwdekker.com/FWDekker/error-pages/">git</a>.
Consider reading the <a href="https://fwdekker.com/privacy/">privacy policy</a>.
<div style="float: right;">v1.2.0</div>
</footer>
</main>
</body>
</html>

View File

@ -1,7 +1,10 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="author" content="Felix W. Dekker" />
<meta name="theme-color" content="#0033cc" />
<title>Access forbidden | FWDekker</title>
@ -15,22 +18,52 @@
color: black;
}
#wrapper {
margin: auto;
padding-top: 50px;
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
main {
display: flex;
flex-direction: column;
margin: 0 auto;
width: 50%;
max-width: 800px;
min-width: 400px;
min-height: 100%;
}
#contents {
flex: 1;
margin: 5rem 0;
}
footer {
color: #606c76;
margin-bottom: 3rem;
}
</style>
</head>
<body>
<div id="wrapper">
<h1><a href="https://fwdekker.com/">FWDekker</a></h1>
<b>Access forbidden</b> (403)<br /><br />
Sorry for the inconvenience.
You may want to try going to <a href="https://fwdekker.com/">this website's homepage</a>.
</div>
<main>
<section id="contents">
<h1><a href="https://fwdekker.com/">FWDekker</a></h1>
<b>Access forbidden</b> (403)<br /><br />
Sorry for the inconvenience.
You may want to try going to <a href="https://fwdekker.com/">this website's homepage</a>.
</section>
<footer>
Made by <a href="https://fwdekker.com/">Felix W. Dekker</a><span>.
Licensed under the
<a href="https://git.fwdekker.com/FWDekker/error-pages/src/branch/master/LICENSE">MIT License</a>.
Source code available on </span><a href="https://git.fwdekker.com/FWDekker/error-pages/">git</a>.
Consider reading the <a href="https://fwdekker.com/privacy/">privacy policy</a>.
<div style="float: right;">v1.2.0</div>
</footer>
</main>
</body>
</html>

View File

@ -1,7 +1,10 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="author" content="Felix W. Dekker" />
<meta name="theme-color" content="#0033cc" />
<title>File not found | FWDekker</title>
@ -15,22 +18,52 @@
color: black;
}
#wrapper {
margin: auto;
padding-top: 50px;
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
main {
display: flex;
flex-direction: column;
margin: 0 auto;
width: 50%;
max-width: 800px;
min-width: 400px;
min-height: 100%;
}
#contents {
flex: 1;
margin: 5rem 0;
}
footer {
color: #606c76;
margin-bottom: 3rem;
}
</style>
</head>
<body>
<div id="wrapper">
<h1><a href="https://fwdekker.com/">FWDekker</a></h1>
<b>File not found</b> (404)<br /><br />
Sorry for the inconvenience.
You may want to try going to <a href="https://fwdekker.com/">this website's homepage</a>.
</div>
<main>
<section id="contents">
<h1><a href="https://fwdekker.com/">FWDekker</a></h1>
<b>File not found</b> (404)<br /><br />
Sorry for the inconvenience.
You may want to try going to <a href="https://fwdekker.com/">this website's homepage</a>.
</section>
<footer>
Made by <a href="https://fwdekker.com/">Felix W. Dekker</a><span>.
Licensed under the
<a href="https://git.fwdekker.com/FWDekker/error-pages/src/branch/master/LICENSE">MIT License</a>.
Source code available on </span><a href="https://git.fwdekker.com/FWDekker/error-pages/">git</a>.
Consider reading the <a href="https://fwdekker.com/privacy/">privacy policy</a>.
<div style="float: right;">v1.2.0</div>
</footer>
</main>
</body>
</html>

View File

@ -1,7 +1,10 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="author" content="Felix W. Dekker" />
<meta name="theme-color" content="#0033cc" />
<title>Internal server error | FWDekker</title>
@ -15,22 +18,52 @@
color: black;
}
#wrapper {
margin: auto;
padding-top: 50px;
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
main {
display: flex;
flex-direction: column;
margin: 0 auto;
width: 50%;
max-width: 800px;
min-width: 400px;
min-height: 100%;
}
#contents {
flex: 1;
margin: 5rem 0;
}
footer {
color: #606c76;
margin-bottom: 3rem;
}
</style>
</head>
<body>
<div id="wrapper">
<h1><a href="https://fwdekker.com/">FWDekker</a></h1>
<b>Internal server error</b> (405)<br /><br />
Sorry for the inconvenience.
You may want to try going to <a href="https://fwdekker.com/">this website's homepage</a>.
</div>
<main>
<section id="contents">
<h1><a href="https://fwdekker.com/">FWDekker</a></h1>
<b>Internal server error</b> (405)<br /><br />
Sorry for the inconvenience.
You may want to try going to <a href="https://fwdekker.com/">this website's homepage</a>.
</section>
<footer>
Made by <a href="https://fwdekker.com/">Felix W. Dekker</a><span>.
Licensed under the
<a href="https://git.fwdekker.com/FWDekker/error-pages/src/branch/master/LICENSE">MIT License</a>.
Source code available on </span><a href="https://git.fwdekker.com/FWDekker/error-pages/">git</a>.
Consider reading the <a href="https://fwdekker.com/privacy/">privacy policy</a>.
<div style="float: right;">v1.2.0</div>
</footer>
</main>
</body>
</html>

View File

@ -1,7 +1,10 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="author" content="Felix W. Dekker" />
<meta name="theme-color" content="#0033cc" />
<title>Not acceptable | FWDekker</title>
@ -15,22 +18,52 @@
color: black;
}
#wrapper {
margin: auto;
padding-top: 50px;
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
main {
display: flex;
flex-direction: column;
margin: 0 auto;
width: 50%;
max-width: 800px;
min-width: 400px;
min-height: 100%;
}
#contents {
flex: 1;
margin: 5rem 0;
}
footer {
color: #606c76;
margin-bottom: 3rem;
}
</style>
</head>
<body>
<div id="wrapper">
<h1><a href="https://fwdekker.com/">FWDekker</a></h1>
<b>Not acceptable</b> (406)<br /><br />
Sorry for the inconvenience.
You may want to try going to <a href="https://fwdekker.com/">this website's homepage</a>.
</div>
<main>
<section id="contents">
<h1><a href="https://fwdekker.com/">FWDekker</a></h1>
<b>Not acceptable</b> (406)<br /><br />
Sorry for the inconvenience.
You may want to try going to <a href="https://fwdekker.com/">this website's homepage</a>.
</section>
<footer>
Made by <a href="https://fwdekker.com/">Felix W. Dekker</a><span>.
Licensed under the
<a href="https://git.fwdekker.com/FWDekker/error-pages/src/branch/master/LICENSE">MIT License</a>.
Source code available on </span><a href="https://git.fwdekker.com/FWDekker/error-pages/">git</a>.
Consider reading the <a href="https://fwdekker.com/privacy/">privacy policy</a>.
<div style="float: right;">v1.2.0</div>
</footer>
</main>
</body>
</html>

View File

@ -1,7 +1,10 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="author" content="Felix W. Dekker" />
<meta name="theme-color" content="#0033cc" />
<title>Proxy authentication required | FWDekker</title>
@ -15,22 +18,52 @@
color: black;
}
#wrapper {
margin: auto;
padding-top: 50px;
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
main {
display: flex;
flex-direction: column;
margin: 0 auto;
width: 50%;
max-width: 800px;
min-width: 400px;
min-height: 100%;
}
#contents {
flex: 1;
margin: 5rem 0;
}
footer {
color: #606c76;
margin-bottom: 3rem;
}
</style>
</head>
<body>
<div id="wrapper">
<h1><a href="https://fwdekker.com/">FWDekker</a></h1>
<b>Proxy authentication required</b> (407)<br /><br />
Sorry for the inconvenience.
You may want to try going to <a href="https://fwdekker.com/">this website's homepage</a>.
</div>
<main>
<section id="contents">
<h1><a href="https://fwdekker.com/">FWDekker</a></h1>
<b>Proxy authentication required</b> (407)<br /><br />
Sorry for the inconvenience.
You may want to try going to <a href="https://fwdekker.com/">this website's homepage</a>.
</section>
<footer>
Made by <a href="https://fwdekker.com/">Felix W. Dekker</a><span>.
Licensed under the
<a href="https://git.fwdekker.com/FWDekker/error-pages/src/branch/master/LICENSE">MIT License</a>.
Source code available on </span><a href="https://git.fwdekker.com/FWDekker/error-pages/">git</a>.
Consider reading the <a href="https://fwdekker.com/privacy/">privacy policy</a>.
<div style="float: right;">v1.2.0</div>
</footer>
</main>
</body>
</html>

View File

@ -1,7 +1,10 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="author" content="Felix W. Dekker" />
<meta name="theme-color" content="#0033cc" />
<title>Request timeout | FWDekker</title>
@ -15,22 +18,52 @@
color: black;
}
#wrapper {
margin: auto;
padding-top: 50px;
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
main {
display: flex;
flex-direction: column;
margin: 0 auto;
width: 50%;
max-width: 800px;
min-width: 400px;
min-height: 100%;
}
#contents {
flex: 1;
margin: 5rem 0;
}
footer {
color: #606c76;
margin-bottom: 3rem;
}
</style>
</head>
<body>
<div id="wrapper">
<h1><a href="https://fwdekker.com/">FWDekker</a></h1>
<b>Request timeout</b> (408)<br /><br />
Sorry for the inconvenience.
You may want to try going to <a href="https://fwdekker.com/">this website's homepage</a>.
</div>
<main>
<section id="contents">
<h1><a href="https://fwdekker.com/">FWDekker</a></h1>
<b>Request timeout</b> (408)<br /><br />
Sorry for the inconvenience.
You may want to try going to <a href="https://fwdekker.com/">this website's homepage</a>.
</section>
<footer>
Made by <a href="https://fwdekker.com/">Felix W. Dekker</a><span>.
Licensed under the
<a href="https://git.fwdekker.com/FWDekker/error-pages/src/branch/master/LICENSE">MIT License</a>.
Source code available on </span><a href="https://git.fwdekker.com/FWDekker/error-pages/">git</a>.
Consider reading the <a href="https://fwdekker.com/privacy/">privacy policy</a>.
<div style="float: right;">v1.2.0</div>
</footer>
</main>
</body>
</html>

View File

@ -1,7 +1,10 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="author" content="Felix W. Dekker" />
<meta name="theme-color" content="#0033cc" />
<title>Conflict | FWDekker</title>
@ -15,22 +18,52 @@
color: black;
}
#wrapper {
margin: auto;
padding-top: 50px;
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
main {
display: flex;
flex-direction: column;
margin: 0 auto;
width: 50%;
max-width: 800px;
min-width: 400px;
min-height: 100%;
}
#contents {
flex: 1;
margin: 5rem 0;
}
footer {
color: #606c76;
margin-bottom: 3rem;
}
</style>
</head>
<body>
<div id="wrapper">
<h1><a href="https://fwdekker.com/">FWDekker</a></h1>
<b>Conflict</b> (409)<br /><br />
Sorry for the inconvenience.
You may want to try going to <a href="https://fwdekker.com/">this website's homepage</a>.
</div>
<main>
<section id="contents">
<h1><a href="https://fwdekker.com/">FWDekker</a></h1>
<b>Conflict</b> (409)<br /><br />
Sorry for the inconvenience.
You may want to try going to <a href="https://fwdekker.com/">this website's homepage</a>.
</section>
<footer>
Made by <a href="https://fwdekker.com/">Felix W. Dekker</a><span>.
Licensed under the
<a href="https://git.fwdekker.com/FWDekker/error-pages/src/branch/master/LICENSE">MIT License</a>.
Source code available on </span><a href="https://git.fwdekker.com/FWDekker/error-pages/">git</a>.
Consider reading the <a href="https://fwdekker.com/privacy/">privacy policy</a>.
<div style="float: right;">v1.2.0</div>
</footer>
</main>
</body>
</html>

View File

@ -1,7 +1,10 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="author" content="Felix W. Dekker" />
<meta name="theme-color" content="#0033cc" />
<title>Gone | FWDekker</title>
@ -15,22 +18,52 @@
color: black;
}
#wrapper {
margin: auto;
padding-top: 50px;
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
main {
display: flex;
flex-direction: column;
margin: 0 auto;
width: 50%;
max-width: 800px;
min-width: 400px;
min-height: 100%;
}
#contents {
flex: 1;
margin: 5rem 0;
}
footer {
color: #606c76;
margin-bottom: 3rem;
}
</style>
</head>
<body>
<div id="wrapper">
<h1><a href="https://fwdekker.com/">FWDekker</a></h1>
<b>Gone</b> (410)<br /><br />
Sorry for the inconvenience.
You may want to try going to <a href="https://fwdekker.com/">this website's homepage</a>.
</div>
<main>
<section id="contents">
<h1><a href="https://fwdekker.com/">FWDekker</a></h1>
<b>Gone</b> (410)<br /><br />
Sorry for the inconvenience.
You may want to try going to <a href="https://fwdekker.com/">this website's homepage</a>.
</section>
<footer>
Made by <a href="https://fwdekker.com/">Felix W. Dekker</a><span>.
Licensed under the
<a href="https://git.fwdekker.com/FWDekker/error-pages/src/branch/master/LICENSE">MIT License</a>.
Source code available on </span><a href="https://git.fwdekker.com/FWDekker/error-pages/">git</a>.
Consider reading the <a href="https://fwdekker.com/privacy/">privacy policy</a>.
<div style="float: right;">v1.2.0</div>
</footer>
</main>
</body>
</html>

View File

@ -1,7 +1,10 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="author" content="Felix W. Dekker" />
<meta name="theme-color" content="#0033cc" />
<title>Length required | FWDekker</title>
@ -15,22 +18,52 @@
color: black;
}
#wrapper {
margin: auto;
padding-top: 50px;
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
main {
display: flex;
flex-direction: column;
margin: 0 auto;
width: 50%;
max-width: 800px;
min-width: 400px;
min-height: 100%;
}
#contents {
flex: 1;
margin: 5rem 0;
}
footer {
color: #606c76;
margin-bottom: 3rem;
}
</style>
</head>
<body>
<div id="wrapper">
<h1><a href="https://fwdekker.com/">FWDekker</a></h1>
<b>Length required</b> (411)<br /><br />
Sorry for the inconvenience.
You may want to try going to <a href="https://fwdekker.com/">this website's homepage</a>.
</div>
<main>
<section id="contents">
<h1><a href="https://fwdekker.com/">FWDekker</a></h1>
<b>Length required</b> (411)<br /><br />
Sorry for the inconvenience.
You may want to try going to <a href="https://fwdekker.com/">this website's homepage</a>.
</section>
<footer>
Made by <a href="https://fwdekker.com/">Felix W. Dekker</a><span>.
Licensed under the
<a href="https://git.fwdekker.com/FWDekker/error-pages/src/branch/master/LICENSE">MIT License</a>.
Source code available on </span><a href="https://git.fwdekker.com/FWDekker/error-pages/">git</a>.
Consider reading the <a href="https://fwdekker.com/privacy/">privacy policy</a>.
<div style="float: right;">v1.2.0</div>
</footer>
</main>
</body>
</html>

View File

@ -1,7 +1,10 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="author" content="Felix W. Dekker" />
<meta name="theme-color" content="#0033cc" />
<title>Precondition required | FWDekker</title>
@ -15,22 +18,52 @@
color: black;
}
#wrapper {
margin: auto;
padding-top: 50px;
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
main {
display: flex;
flex-direction: column;
margin: 0 auto;
width: 50%;
max-width: 800px;
min-width: 400px;
min-height: 100%;
}
#contents {
flex: 1;
margin: 5rem 0;
}
footer {
color: #606c76;
margin-bottom: 3rem;
}
</style>
</head>
<body>
<div id="wrapper">
<h1><a href="https://fwdekker.com/">FWDekker</a></h1>
<b>Precondition required</b> (412)<br /><br />
Sorry for the inconvenience.
You may want to try going to <a href="https://fwdekker.com/">this website's homepage</a>.
</div>
<main>
<section id="contents">
<h1><a href="https://fwdekker.com/">FWDekker</a></h1>
<b>Precondition required</b> (412)<br /><br />
Sorry for the inconvenience.
You may want to try going to <a href="https://fwdekker.com/">this website's homepage</a>.
</section>
<footer>
Made by <a href="https://fwdekker.com/">Felix W. Dekker</a><span>.
Licensed under the
<a href="https://git.fwdekker.com/FWDekker/error-pages/src/branch/master/LICENSE">MIT License</a>.
Source code available on </span><a href="https://git.fwdekker.com/FWDekker/error-pages/">git</a>.
Consider reading the <a href="https://fwdekker.com/privacy/">privacy policy</a>.
<div style="float: right;">v1.2.0</div>
</footer>
</main>
</body>
</html>

View File

@ -1,7 +1,10 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="author" content="Felix W. Dekker" />
<meta name="theme-color" content="#0033cc" />
<title>Request entity too large | FWDekker</title>
@ -15,22 +18,52 @@
color: black;
}
#wrapper {
margin: auto;
padding-top: 50px;
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
main {
display: flex;
flex-direction: column;
margin: 0 auto;
width: 50%;
max-width: 800px;
min-width: 400px;
min-height: 100%;
}
#contents {
flex: 1;
margin: 5rem 0;
}
footer {
color: #606c76;
margin-bottom: 3rem;
}
</style>
</head>
<body>
<div id="wrapper">
<h1><a href="https://fwdekker.com/">FWDekker</a></h1>
<b>Request entity too large</b> (413)<br /><br />
Sorry for the inconvenience.
You may want to try going to <a href="https://fwdekker.com/">this website's homepage</a>.
</div>
<main>
<section id="contents">
<h1><a href="https://fwdekker.com/">FWDekker</a></h1>
<b>Request entity too large</b> (413)<br /><br />
Sorry for the inconvenience.
You may want to try going to <a href="https://fwdekker.com/">this website's homepage</a>.
</section>
<footer>
Made by <a href="https://fwdekker.com/">Felix W. Dekker</a><span>.
Licensed under the
<a href="https://git.fwdekker.com/FWDekker/error-pages/src/branch/master/LICENSE">MIT License</a>.
Source code available on </span><a href="https://git.fwdekker.com/FWDekker/error-pages/">git</a>.
Consider reading the <a href="https://fwdekker.com/privacy/">privacy policy</a>.
<div style="float: right;">v1.2.0</div>
</footer>
</main>
</body>
</html>

View File

@ -1,7 +1,10 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="author" content="Felix W. Dekker" />
<meta name="theme-color" content="#0033cc" />
<title>Request URI too long | FWDekker</title>
@ -15,22 +18,52 @@
color: black;
}
#wrapper {
margin: auto;
padding-top: 50px;
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
main {
display: flex;
flex-direction: column;
margin: 0 auto;
width: 50%;
max-width: 800px;
min-width: 400px;
min-height: 100%;
}
#contents {
flex: 1;
margin: 5rem 0;
}
footer {
color: #606c76;
margin-bottom: 3rem;
}
</style>
</head>
<body>
<div id="wrapper">
<h1><a href="https://fwdekker.com/">FWDekker</a></h1>
<b>Request URI too long</b> (414)<br /><br />
Sorry for the inconvenience.
You may want to try going to <a href="https://fwdekker.com/">this website's homepage</a>.
</div>
<main>
<section id="contents">
<h1><a href="https://fwdekker.com/">FWDekker</a></h1>
<b>Request URI too long</b> (414)<br /><br />
Sorry for the inconvenience.
You may want to try going to <a href="https://fwdekker.com/">this website's homepage</a>.
</section>
<footer>
Made by <a href="https://fwdekker.com/">Felix W. Dekker</a><span>.
Licensed under the
<a href="https://git.fwdekker.com/FWDekker/error-pages/src/branch/master/LICENSE">MIT License</a>.
Source code available on </span><a href="https://git.fwdekker.com/FWDekker/error-pages/">git</a>.
Consider reading the <a href="https://fwdekker.com/privacy/">privacy policy</a>.
<div style="float: right;">v1.2.0</div>
</footer>
</main>
</body>
</html>

View File

@ -1,7 +1,10 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="author" content="Felix W. Dekker" />
<meta name="theme-color" content="#0033cc" />
<title>Unsupported media type | FWDekker</title>
@ -15,22 +18,52 @@
color: black;
}
#wrapper {
margin: auto;
padding-top: 50px;
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
main {
display: flex;
flex-direction: column;
margin: 0 auto;
width: 50%;
max-width: 800px;
min-width: 400px;
min-height: 100%;
}
#contents {
flex: 1;
margin: 5rem 0;
}
footer {
color: #606c76;
margin-bottom: 3rem;
}
</style>
</head>
<body>
<div id="wrapper">
<h1><a href="https://fwdekker.com/">FWDekker</a></h1>
<b>Unsupported media type</b> (415)<br /><br />
Sorry for the inconvenience.
You may want to try going to <a href="https://fwdekker.com/">this website's homepage</a>.
</div>
<main>
<section id="contents">
<h1><a href="https://fwdekker.com/">FWDekker</a></h1>
<b>Unsupported media type</b> (415)<br /><br />
Sorry for the inconvenience.
You may want to try going to <a href="https://fwdekker.com/">this website's homepage</a>.
</section>
<footer>
Made by <a href="https://fwdekker.com/">Felix W. Dekker</a><span>.
Licensed under the
<a href="https://git.fwdekker.com/FWDekker/error-pages/src/branch/master/LICENSE">MIT License</a>.
Source code available on </span><a href="https://git.fwdekker.com/FWDekker/error-pages/">git</a>.
Consider reading the <a href="https://fwdekker.com/privacy/">privacy policy</a>.
<div style="float: right;">v1.2.0</div>
</footer>
</main>
</body>
</html>

View File

@ -1,7 +1,10 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="author" content="Felix W. Dekker" />
<meta name="theme-color" content="#0033cc" />
<title>Requested range not satisfiable | FWDekker</title>
@ -15,22 +18,52 @@
color: black;
}
#wrapper {
margin: auto;
padding-top: 50px;
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
main {
display: flex;
flex-direction: column;
margin: 0 auto;
width: 50%;
max-width: 800px;
min-width: 400px;
min-height: 100%;
}
#contents {
flex: 1;
margin: 5rem 0;
}
footer {
color: #606c76;
margin-bottom: 3rem;
}
</style>
</head>
<body>
<div id="wrapper">
<h1><a href="https://fwdekker.com/">FWDekker</a></h1>
<b>Requested range not satisfiable</b> (416)<br /><br />
Sorry for the inconvenience.
You may want to try going to <a href="https://fwdekker.com/">this website's homepage</a>.
</div>
<main>
<section id="contents">
<h1><a href="https://fwdekker.com/">FWDekker</a></h1>
<b>Requested range not satisfiable</b> (416)<br /><br />
Sorry for the inconvenience.
You may want to try going to <a href="https://fwdekker.com/">this website's homepage</a>.
</section>
<footer>
Made by <a href="https://fwdekker.com/">Felix W. Dekker</a><span>.
Licensed under the
<a href="https://git.fwdekker.com/FWDekker/error-pages/src/branch/master/LICENSE">MIT License</a>.
Source code available on </span><a href="https://git.fwdekker.com/FWDekker/error-pages/">git</a>.
Consider reading the <a href="https://fwdekker.com/privacy/">privacy policy</a>.
<div style="float: right;">v1.2.0</div>
</footer>
</main>
</body>
</html>

View File

@ -1,7 +1,10 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="author" content="Felix W. Dekker" />
<meta name="theme-color" content="#0033cc" />
<title>Expectation failed | FWDekker</title>
@ -15,22 +18,51 @@
color: black;
}
#wrapper {
margin: auto;
padding-top: 50px;
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
main {
display: flex;
flex-direction: column;
margin: 0 auto;
width: 50%;
max-width: 800px;
min-width: 400px;
min-height: 100%;
}
#contents {
flex: 1;
margin: 5rem 0;
}
footer {
color: #606c76;
margin-bottom: 3rem;
}
</style>
</head>
<body>
<div id="wrapper">
<h1><a href="https://fwdekker.com/">FWDekker</a></h1>
<b>Expectation failed</b> (417)<br /><br />
Sorry for the inconvenience.
You may want to try going to <a href="https://fwdekker.com/">this website's homepage</a>.
</div>
</body>
<main>
<section id="contents">
<h1><a href="https://fwdekker.com/">FWDekker</a></h1>
<b>Expectation failed</b> (417)<br /><br />
Sorry for the inconvenience.
You may want to try going to <a href="https://fwdekker.com/">this website's homepage</a>.
</section>
<footer>
Made by <a href="https://fwdekker.com/">Felix W. Dekker</a><span>.
Licensed under the
<a href="https://git.fwdekker.com/FWDekker/error-pages/src/branch/master/LICENSE">MIT License</a>.
Source code available on </span><a href="https://git.fwdekker.com/FWDekker/error-pages/">git</a>.
Consider reading the <a href="https://fwdekker.com/privacy/">privacy policy</a>.
<div style="float: right;">v1.2.0</div>
</footer>
</main>
</html>

View File

@ -1,7 +1,10 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="author" content="Felix W. Dekker" />
<meta name="theme-color" content="#0033cc" />
<title>Unavailable for legal reasons | FWDekker</title>
@ -15,22 +18,52 @@
color: black;
}
#wrapper {
margin: auto;
padding-top: 50px;
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
main {
display: flex;
flex-direction: column;
margin: 0 auto;
width: 50%;
max-width: 800px;
min-width: 400px;
min-height: 100%;
}
#contents {
flex: 1;
margin: 5rem 0;
}
footer {
color: #606c76;
margin-bottom: 3rem;
}
</style>
</head>
<body>
<div id="wrapper">
<h1><a href="https://fwdekker.com/">FWDekker</a></h1>
<b>Unavailable for legal reasons</b> (451)<br /><br />
Sorry for the inconvenience.
You may want to try going to <a href="https://fwdekker.com/">this website's homepage</a>.
</div>
<main>
<section id="contents">
<h1><a href="https://fwdekker.com/">FWDekker</a></h1>
<b>Unavailable for legal reasons</b> (451)<br /><br />
Sorry for the inconvenience.
You may want to try going to <a href="https://fwdekker.com/">this website's homepage</a>.
</section>
<footer>
Made by <a href="https://fwdekker.com/">Felix W. Dekker</a><span>.
Licensed under the
<a href="https://git.fwdekker.com/FWDekker/error-pages/src/branch/master/LICENSE">MIT License</a>.
Source code available on </span><a href="https://git.fwdekker.com/FWDekker/error-pages/">git</a>.
Consider reading the <a href="https://fwdekker.com/privacy/">privacy policy</a>.
<div style="float: right;">v1.2.0</div>
</footer>
</main>
</body>
</html>

View File

@ -1,7 +1,10 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="author" content="Felix W. Dekker" />
<meta name="theme-color" content="#0033cc" />
<title>Internal server error | FWDekker</title>
@ -15,22 +18,52 @@
color: black;
}
#wrapper {
margin: auto;
padding-top: 50px;
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
main {
display: flex;
flex-direction: column;
margin: 0 auto;
width: 50%;
max-width: 800px;
min-width: 400px;
min-height: 100%;
}
#contents {
flex: 1;
margin: 5rem 0;
}
footer {
color: #606c76;
margin-bottom: 3rem;
}
</style>
</head>
<body>
<div id="wrapper">
<h1><a href="https://fwdekker.com/">FWDekker</a></h1>
<b>Internal server error</b> (500)<br /><br />
Sorry for the inconvenience.
You may want to try going to <a href="https://fwdekker.com/">this website's homepage</a>.
</div>
<main>
<section id="contents">
<h1><a href="https://fwdekker.com/">FWDekker</a></h1>
<b>Internal server error</b> (500)<br /><br />
Sorry for the inconvenience.
You may want to try going to <a href="https://fwdekker.com/">this website's homepage</a>.
</section>
<footer>
Made by <a href="https://fwdekker.com/">Felix W. Dekker</a><span>.
Licensed under the
<a href="https://git.fwdekker.com/FWDekker/error-pages/src/branch/master/LICENSE">MIT License</a>.
Source code available on </span><a href="https://git.fwdekker.com/FWDekker/error-pages/">git</a>.
Consider reading the <a href="https://fwdekker.com/privacy/">privacy policy</a>.
<div style="float: right;">v1.2.0</div>
</footer>
</main>
</body>
</html>

View File

@ -1,7 +1,10 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="author" content="Felix W. Dekker" />
<meta name="theme-color" content="#0033cc" />
<title>Not implemented | FWDekker</title>
@ -15,22 +18,52 @@
color: black;
}
#wrapper {
margin: auto;
padding-top: 50px;
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
main {
display: flex;
flex-direction: column;
margin: 0 auto;
width: 50%;
max-width: 800px;
min-width: 400px;
min-height: 100%;
}
#contents {
flex: 1;
margin: 5rem 0;
}
footer {
color: #606c76;
margin-bottom: 3rem;
}
</style>
</head>
<body>
<div id="wrapper">
<h1><a href="https://fwdekker.com/">FWDekker</a></h1>
<b>Not implemented</b> (501)<br /><br />
Sorry for the inconvenience.
You may want to try going to <a href="https://fwdekker.com/">this website's homepage</a>.
</div>
<main>
<section id="contents">
<h1><a href="https://fwdekker.com/">FWDekker</a></h1>
<b>Not implemented</b> (501)<br /><br />
Sorry for the inconvenience.
You may want to try going to <a href="https://fwdekker.com/">this website's homepage</a>.
</section>
<footer>
Made by <a href="https://fwdekker.com/">Felix W. Dekker</a><span>.
Licensed under the
<a href="https://git.fwdekker.com/FWDekker/error-pages/src/branch/master/LICENSE">MIT License</a>.
Source code available on </span><a href="https://git.fwdekker.com/FWDekker/error-pages/">git</a>.
Consider reading the <a href="https://fwdekker.com/privacy/">privacy policy</a>.
<div style="float: right;">v1.2.0</div>
</footer>
</main>
</body>
</html>

View File

@ -1,7 +1,10 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="author" content="Felix W. Dekker" />
<meta name="theme-color" content="#0033cc" />
<title>Bad gateway | FWDekker</title>
@ -15,22 +18,52 @@
color: black;
}
#wrapper {
margin: auto;
padding-top: 50px;
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
main {
display: flex;
flex-direction: column;
margin: 0 auto;
width: 50%;
max-width: 800px;
min-width: 400px;
min-height: 100%;
}
#contents {
flex: 1;
margin: 5rem 0;
}
footer {
color: #606c76;
margin-bottom: 3rem;
}
</style>
</head>
<body>
<div id="wrapper">
<h1><a href="https://fwdekker.com/">FWDekker</a></h1>
<b>Bad gateway</b> (502)<br /><br />
Sorry for the inconvenience.
You may want to try going to <a href="https://fwdekker.com/">this website's homepage</a>.
</div>
<main>
<section id="contents">
<h1><a href="https://fwdekker.com/">FWDekker</a></h1>
<b>Bad gateway</b> (502)<br /><br />
Sorry for the inconvenience.
You may want to try going to <a href="https://fwdekker.com/">this website's homepage</a>.
</section>
<footer>
Made by <a href="https://fwdekker.com/">Felix W. Dekker</a><span>.
Licensed under the
<a href="https://git.fwdekker.com/FWDekker/error-pages/src/branch/master/LICENSE">MIT License</a>.
Source code available on </span><a href="https://git.fwdekker.com/FWDekker/error-pages/">git</a>.
Consider reading the <a href="https://fwdekker.com/privacy/">privacy policy</a>.
<div style="float: right;">v1.2.0</div>
</footer>
</main>
</body>
</html>

View File

@ -1,7 +1,10 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="author" content="Felix W. Dekker" />
<meta name="theme-color" content="#0033cc" />
<title>Service unavailable | FWDekker</title>
@ -15,22 +18,52 @@
color: black;
}
#wrapper {
margin: auto;
padding-top: 50px;
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
main {
display: flex;
flex-direction: column;
margin: 0 auto;
width: 50%;
max-width: 800px;
min-width: 400px;
min-height: 100%;
}
#contents {
flex: 1;
margin: 5rem 0;
}
footer {
color: #606c76;
margin-bottom: 3rem;
}
</style>
</head>
<body>
<div id="wrapper">
<h1><a href="https://fwdekker.com/">FWDekker</a></h1>
<b>Service unavailable</b> (503)<br /><br />
Sorry for the inconvenience.
You may want to try going to <a href="https://fwdekker.com/">this website's homepage</a>.
</div>
<main>
<section id="contents">
<h1><a href="https://fwdekker.com/">FWDekker</a></h1>
<b>Service unavailable</b> (503)<br /><br />
Sorry for the inconvenience.
You may want to try going to <a href="https://fwdekker.com/">this website's homepage</a>.
</section>
<footer>
Made by <a href="https://fwdekker.com/">Felix W. Dekker</a><span>.
Licensed under the
<a href="https://git.fwdekker.com/FWDekker/error-pages/src/branch/master/LICENSE">MIT License</a>.
Source code available on </span><a href="https://git.fwdekker.com/FWDekker/error-pages/">git</a>.
Consider reading the <a href="https://fwdekker.com/privacy/">privacy policy</a>.
<div style="float: right;">v1.2.0</div>
</footer>
</main>
</body>
</html>

View File

@ -1,7 +1,10 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="author" content="Felix W. Dekker" />
<meta name="theme-color" content="#0033cc" />
<title>Gateway timeout | FWDekker</title>
@ -15,22 +18,52 @@
color: black;
}
#wrapper {
margin: auto;
padding-top: 50px;
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
main {
display: flex;
flex-direction: column;
margin: 0 auto;
width: 50%;
max-width: 800px;
min-width: 400px;
min-height: 100%;
}
#contents {
flex: 1;
margin: 5rem 0;
}
footer {
color: #606c76;
margin-bottom: 3rem;
}
</style>
</head>
<body>
<div id="wrapper">
<h1><a href="https://fwdekker.com/">FWDekker</a></h1>
<b>Gateway timeout</b> (504)<br /><br />
Sorry for the inconvenience.
You may want to try going to <a href="https://fwdekker.com/">this website's homepage</a>.
</div>
<main>
<section id="contents">
<h1><a href="https://fwdekker.com/">FWDekker</a></h1>
<b>Gateway timeout</b> (504)<br /><br />
Sorry for the inconvenience.
You may want to try going to <a href="https://fwdekker.com/">this website's homepage</a>.
</section>
<footer>
Made by <a href="https://fwdekker.com/">Felix W. Dekker</a><span>.
Licensed under the
<a href="https://git.fwdekker.com/FWDekker/error-pages/src/branch/master/LICENSE">MIT License</a>.
Source code available on </span><a href="https://git.fwdekker.com/FWDekker/error-pages/">git</a>.
Consider reading the <a href="https://fwdekker.com/privacy/">privacy policy</a>.
<div style="float: right;">v1.2.0</div>
</footer>
</main>
</body>
</html>

View File

@ -1,7 +1,10 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="author" content="Felix W. Dekker" />
<meta name="theme-color" content="#0033cc" />
<title>HTTP version not supported | FWDekker</title>
@ -15,22 +18,52 @@
color: black;
}
#wrapper {
margin: auto;
padding-top: 50px;
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
main {
display: flex;
flex-direction: column;
margin: 0 auto;
width: 50%;
max-width: 800px;
min-width: 400px;
min-height: 100%;
}
#contents {
flex: 1;
margin: 5rem 0;
}
footer {
color: #606c76;
margin-bottom: 3rem;
}
</style>
</head>
<body>
<div id="wrapper">
<h1><a href="https://fwdekker.com/">FWDekker</a></h1>
<b>HTTP version not supported</b> (505)<br /><br />
Sorry for the inconvenience.
You may want to try going to <a href="https://fwdekker.com/">this website's homepage</a>.
</div>
<main>
<section id="contents">
<h1><a href="https://fwdekker.com/">FWDekker</a></h1>
<b>HTTP version not supported</b> (505)<br /><br />
Sorry for the inconvenience.
You may want to try going to <a href="https://fwdekker.com/">this website's homepage</a>.
</section>
<footer>
Made by <a href="https://fwdekker.com/">Felix W. Dekker</a><span>.
Licensed under the
<a href="https://git.fwdekker.com/FWDekker/error-pages/src/branch/master/LICENSE">MIT License</a>.
Source code available on </span><a href="https://git.fwdekker.com/FWDekker/error-pages/">git</a>.
Consider reading the <a href="https://fwdekker.com/privacy/">privacy policy</a>.
<div style="float: right;">v1.2.0</div>
</footer>
</main>
</body>
</html>