~linuxgoose/bocpress

ref: 9afdb75f10ced5d9a97480054ebc903171089b4c bocpress/main/templates/500.html -rw-r--r-- 398 bytes
9afdb75fJordan Robinson fix need to use blog_user for public page 2 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
{% extends 'main/layout.html' %}

{% block title %}500 — Internal Server Error{% endblock %}

{% block content %}
<main>
    <h1>500</h1>
    <h2>Internal Server Error</h2>
    <p>Alas, an unexpected misfortune has befallen our server.</p>
    <p><a href="#" onclick="history.back();">← Go back</a> or return to the <a href="{% url 'index' %}">homepage</a>.</p>
</main>

{% endblock content %}