Revert "Add maintenance page using custom error code"

This reverts the previous commit.
This commit is contained in:
Florine W. Dekker 2021-06-09 17:54:31 +02:00
parent f2ef393d36
commit 76aa3d633c
Signed by: FWDekker
GPG Key ID: 78B3EAF58145AF25
3 changed files with 3 additions and 12 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "error-pages", "name": "error-pages",
"version": "1.3.2", "version": "1.3.1",
"description": "Error pages for my website.", "description": "Error pages for my website.",
"author": "F.W. Dekker", "author": "F.W. Dekker",
"browser": "dist/bundle.js", "browser": "dist/bundle.js",

View File

@ -98,10 +98,5 @@
{ {
"name": "HTTP version not supported", "name": "HTTP version not supported",
"code": "505" "code": "505"
},
{
"name": "Maintenance",
"code": "590",
"maintenance": "true"
} }
] ]

View File

@ -37,13 +37,9 @@ permalink: "{{ errorPage.code | slug }}.html"
<div id="nav"></div> <div id="nav"></div>
<div id="contents"> <div id="contents">
<section class="container"> <section class="container">
<h3>{{ errorPage.name }}{% if not errorPage.maintenance %} <small>({{ errorPage.code }})</small>{% endif %}</h3> <h3>{{ errorPage.name }} <small>({{ errorPage.code }})</small></h3>
Sorry for the inconvenience. Sorry for the inconvenience.
{% if errorPage.maintenance %} You may want to try going to <a href="https://fwdekker.com/">this website's homepage</a>.
Please try again in a minute or so.
{% else %}
You may want to try going to <a href="https://fwdekker.com/">this website's homepage</a>.
{% endif %}
</section> </section>
</div> </div>
<div id="footer"></div> <div id="footer"></div>