pyfedi/app/templates/errors/500.html

22 lines
806 B
HTML
Raw Normal View History

{% if theme() and file_exists('app/templates/themes/' + theme() + '/base.html') %}
{% extends 'themes/' + theme() + '/base.html' %}
{% else %}
{% extends "base.html" %}
{% endif %} %}
2023-07-28 16:22:12 +12:00
{% block app_content %}
<div class="row">
<div class="col">
<div class="card">
<div class="card-header">
<h3 class="card-title">{{ _('An unexpected error has occurred') }}</h3>
</div>
<div class="card-body">
<p>{{ _('Sorry for the inconvenience! Please let us know about this, so we can repair it and make PieFed better for everyone.') }}</p>
<p><a href="#" class="go_back">{{ _('Back') }}</a></p>
2023-07-28 16:22:12 +12:00
</div>
</div>
</div>
</div>
{% endblock %}