1
0
mirror of https://github.com/funkypenguin/geek-cookbook/ synced 2025-12-15 10:46:34 +00:00
Files
geek-cookbook/overrides/404.html
2022-07-06 09:51:05 +12:00

18 lines
529 B
HTML

{% extends "main.html" %}
<!-- Content -->
{% 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 %}