bookwyrm/bookwyrm/templates/500.html
2021-03-29 18:47:21 -07:00

13 lines
279 B
HTML

{% extends 'layout.html' %}
{% load i18n %}
{% block title %}{% trans "Oops!" %}{% endblock %}
{% block content %}
<div class="block">
<h1 class="title">{% trans "Server Error" %}</h1>
<p>{% trans "Something went wrong! Sorry about that." %}</p>
</div>
{% endblock %}