pflaenz.li/pflaenzli/pflaenzli/templates/error/500.html
2023-05-18 12:30:55 +02:00

24 lines
1.1 KiB
HTML

{% extends 'base.html' %}
{% load i18n %}
{% block title %}
{% trans "Not found" %}
{% endblock title %}
{% block content %}
<div>
<h1 class="mb-3">
<span class="badge bg-danger">Error 500</span> {% trans "Page not found" %}
</h1>
<p class="mb-5 blockquote w-75">
{% blocktrans %}
Uh-oh! The delicate balance of the botanical realms has been disrupted. The forces of nature are in disarray,
and our plant guardians are diligently working to restore harmony. We apologize for any inconvenience caused
during this mystical turbulence. Please bear with us as we channel our magic to mend the rupture. Please
contact us, if you have any information that could help to disspell the dark magic!
{% endblocktrans %}
</p>
<h2>{% trans "What now?" %}</h2>
<a href="{% url 'index' %}" class="btn btn-pfl">{% trans "Go home" %}</a>
<a href="mailto:contact@pflaenz.li" class="btn btn-secondary">{% trans "Report error" %}</a>
</div>
{% endblock content %}