forked from mirrors/bookwyrm
10 lines
212 B
HTML
10 lines
212 B
HTML
{% extends 'layout.html' %}
|
|
{% block content %}
|
|
|
|
<div class="block">
|
|
<h1 class="title">{% trans "Server Error" %}</h1>
|
|
<p>{% trans "Something went wrong! Sorry about that." %}</p>
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|