~linuxgoose/bocpress

ref: 42cec5dc9648d56bb8bee0a6e09738f558701e1f bocpress/main/templates/500.html -rw-r--r-- 398 bytes
42cec5dcJordan Robinson fix use blog_user on public template 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 %}