summaryrefslogtreecommitdiffstats
path: root/templates/404.html
diff options
context:
space:
mode:
authorDennis Eriksen <d@ennis.no>2023-01-21 11:02:25 +0100
committerDennis Eriksen <d@ennis.no>2023-01-21 11:02:25 +0100
commit5f4c0e6ac4a77eb3de31156a64ee083e5681186a (patch)
tree959ab777e4124afaf6280b39773da47a2101d0bd /templates/404.html
parentMade Riker into a Zola-theme - Rikerz (diff)
downloadrikerz-5f4c0e6ac4a77eb3de31156a64ee083e5681186a.tar.gz
fix 404 and relative links
Diffstat (limited to 'templates/404.html')
-rw-r--r--templates/404.html7
1 files changed, 5 insertions, 2 deletions
diff --git a/templates/404.html b/templates/404.html
index 02d0a66..6eadf4d 100644
--- a/templates/404.html
+++ b/templates/404.html
@@ -1,8 +1,11 @@
-{% extends "index.html" %}
+{% extends "page.html" %}
+
+{% block title %}404 &middot; {{ config.title }}{% endblock title %}
{% block content %}
<article>
- <center><h1>404</h1></center>
+ <center><h1 style="font-size:10rem; margin-bottom: 0;">404</h1></center>
<center><p>Page not found, dude.</p></center>
+ <center><p>Click <a href="/">here</a> to return to the front page.</p></center>
</article>
{% endblock content %}