Add custom 404 page

This commit is contained in:
Matthew Grove
2019-02-05 07:10:49 +00:00
parent 607ec3990c
commit 6da6d7a91e
23 changed files with 31 additions and 1474 deletions

23
_layouts/404.html Normal file
View File

@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html>
{% include head.html %}
<body>
<!-- cookie notice is included automatically -->
{% include cookie-notice.html %}
<!-- content of navbar is included via jQuery -->
{% include navbar.html %}
<div class="mdc-drawer-app-content">
{% include top-app-bar.html %}
<main class="main-content" id="main-content">
<div class="mdc-top-app-bar--short-fixed-adjust">
<h2 class="mdc-typography--headline2">{{ page.title }}</h2>
{{ content }}
</div>
</main>
{% include footer.html %}
</div>
</body>
</html>