~linuxgoose/bocpress

ref: 089af2cd13ff5b43219fd79e2cce1ead7df9c25f bocpress/export_base_zola/404.html -rw-r--r-- 437 bytes
089af2cdJordan Robinson add all_tags lists to templates and postmanager functions to get all unique tags for posts and blog setting to show/hide tags in posts list 2 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% extends 'index.html' %}

{% block title %}404 — Page Not Found{% endblock title %}

{% block content %}
<main>
    <h1>404</h1>
    <h2>Page Not Found</h2>
    <p>The URL you requested does not exist on this blog. Got lost?</p>
    <p><a href="#" onclick="history.back();">← Go back</a> or return to the <a href="/">homepage</a>.</p>
</main>
<footer>
    Subscribe via <a href="/rss.xml">RSS</a>.
</footer>
{% endblock content %}