1
0
mirror of https://github.com/funkypenguin/geek-cookbook/ synced 2025-12-12 17:26:19 +00:00
Files
geek-cookbook/overrides/404.html
David Young a266997126 Tidy up js
Signed-off-by: David Young <davidy@funkypenguin.co.nz>
2022-07-11 17:42:10 +12:00

18 lines
554 B
HTML

{% extends "main.html" %}
<!-- For 404 tracking using Plausible -->
{% block libs %}
<script>plausible("404",{ props: { path: document.location.pathname } });</script>
{% endblock %}
{% block content %}
<h1 id="404-page-not-found" style="text-align: center">404 / Geeky Recipe Not Found</h1>
<p style="text-align: center">
Having been erased,<br/>
The document you're seeking<br/>
Must now be retyped.
</p>
<p style="text-align: center">
Try navigating using the heading tabs, or just search 👆
</p>
{% endblock %}