Upgrade template to v3

This commit is contained in:
Florine W. Dekker 2022-11-24 17:45:21 +01:00
parent b181230215
commit 6a531491c0
Signed by: FWDekker
GPG Key ID: D3DCFAA8A4560BE0
3 changed files with 21 additions and 16 deletions

BIN
package-lock.json generated

Binary file not shown.

View File

@ -1,6 +1,6 @@
{
"name": "error-pages",
"version": "1.3.4",
"version": "1.3.5",
"description": "Error pages for my website.",
"author": "Florine W. Dekker",
"browser": "dist/bundle.js",
@ -16,10 +16,10 @@
"deploy": "grunt deploy"
},
"devDependencies": {
"@11ty/eleventy": "^1.0.0",
"grunt": "^1.4.1",
"@11ty/eleventy": "^1.0.2",
"grunt": "^1.5.3",
"grunt-cli": "^1.4.3",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-watch": "^1.1.0",
"grunt-exec": "^3.0.0",
"grunt-focus": "^1.0.0",

View File

@ -22,29 +22,34 @@ permalink: "{{ errorPage.code | slugify }}.html"
<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" />
<link rel="stylesheet" href="https://static.fwdekker.com/lib/template/3.x.x/template.css?v=%%VERSION_NUMBER%%" />
</head>
<body>
<noscript>
<noscript class="fwd-js-notice">
<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>.
<nav id="nav"></nav>
<main class="container"> <!-- No need to hide if JS disabled -->
<div role="document">
<section>
<header class="fwd-header">
<hgroup>
<h1>{{ errorPage.name }} <small>({{ errorPage.code }})</small></h1>
<h2>
Sorry for the inconvenience.
You may want to try going to <a href="https://fwdekker.com/">this website's homepage</a>.
</h2>
</hgroup>
</header>
</section>
<footer id="footer"></footer>
</div>
<div id="footer"></div>
</main>
<script src="https://static.fwdekker.com/lib/template/2.x.x/template.js"></script>
<script src="https://static.fwdekker.com/lib/template/3.x.x/template.js?v=%%VERSION_NUMBER%%"></script>
</body>
</html>