Add maintenance page using custom error code

This commit is contained in:
Florine W. Dekker 2021-06-09 12:31:09 +02:00
parent 8f3933b21d
commit 37c08ce5ee
Signed by: FWDekker
GPG Key ID: 78B3EAF58145AF25
3 changed files with 12 additions and 3 deletions

View File

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

View File

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

View File

@ -37,9 +37,13 @@ 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 }} <small>({{ errorPage.code }})</small></h3> <h3>{{ errorPage.name }}{% if not errorPage.maintenance %} <small>({{ errorPage.code }})</small>{% endif %}</h3>
Sorry for the inconvenience. Sorry for the inconvenience.
You may want to try going to <a href="https://fwdekker.com/">this website's homepage</a>. {% if errorPage.maintenance %}
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>