~linuxgoose/bocpress

ref: f11187221f70a6150eceed30d89c25d788e5393a bocpress/main/templates/404.html -rw-r--r-- 368 bytes
f1118722Jordan Robinson update blog import to include parsing of tags like from the export 2 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
{% extends 'main/layout.html' %}

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

{% block content %}
<main>
    <h1>404</h1>
    <h2>Page Not Found</h2>
    <p>Alas, this page is nowhere to be found.?</p>
    <p><a href="#" onclick="history.back();">← Go back</a> or return to the <a href="{% url 'index' %}">homepage</a>.</p>
</main>
{% endblock content %}