1
0
Fork 0
bookwyrm/bookwyrm/templates/error.html

12 lines
228 B
HTML
Raw Normal View History

{% extends 'layout.html' %}
2021-02-27 18:48:10 -08:00
{% load i18n %}
{% block content %}
2020-09-30 15:04:57 -07:00
<div class="block">
<h1 class="title">{% trans "Server Error" %}</h1>
<p>{% trans "Something went wrong! Sorry about that." %}</p>
</div>
{% endblock %}