symposion_app/pinaxcon/templates/500.html
Ben Sturmfels 2680b25f2c
Add a copy of 500.html that matches our template blocks
The builtin `pinax_theme_bootstrap` uses `body` instead of `content`.
2023-04-24 16:38:32 +10:00

12 lines
417 B
HTML

{% extends "site_base.html" %}
{% load i18n %}
{% block head_title %}{% trans "Server Error" %}{% endblock %}
{% block content %}
<header class="jumbotron subhead" id="overview">
<h1>{% trans "Something went wrong" %}</h1>
<p class="lead">{% trans "We're sorry but a server error has occurred. We've been notified and will look into it as soon as possible." %}</p>
</header>
{% endblock %}