error-pages/src/main/template.njk

47 lines
1.5 KiB
Plaintext

---
pagination:
data: error-pages
size: 1
alias: errorPage
permalink: "{{ errorPage.code | slug }}.html"
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="author" content="{{ site.author }}" />
<meta name="application-name" content="{{ site.title }}" />
<meta name="theme-color" content="#0033cc" />
<title>{{ errorPage.name }} | FWDekker</title>
<link rel="stylesheet" href="https://static.fwdekker.com/fonts/roboto/roboto.css" />
<link rel="stylesheet" href="https://static.fwdekker.com/lib/template/2.x.x/template.css" />
</head>
<body>
<noscript>
<p>
This website does not function fully if JavaScript is disabled.
Please check the <a href="https://www.enable-javascript.com/">
instructions on how to enable JavaScript in your web browser</a>.
</p>
</noscript>
<main> <!-- No need to hide if JS disabled -->
<div id="nav"></div>
<div id="contents">
<section class="container">
<h3>{{ errorPage.name }} <small>({{ errorPage.code }})</small></h3>
Sorry for the inconvenience.
You may want to try going to <a href="https://fwdekker.com/">this website's homepage</a>.
</section>
</div>
<div id="footer"></div>
</main>
<script src="https://static.fwdekker.com/lib/template/2.x.x/template.js"></script>
<!--suppress HtmlUnknownTarget -->
<script src="{{ '/bundle.js?v=%%VERSION_NUMBER%%' | url }}"></script>
</body>
</html>