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

22 lines
864 B
HTML

{% extends 'base.html' %}
{% load i18n %}
{% block title %}
{% trans "Not found" %}
{% endblock title %}
{% block content %}
<div>
<h1 class="mb-5">
<span class="badge bg-danger">Error 404</span> {% trans "Page not found" %}
</h1>
<p class="mb-5 blockquote w-75 m-auto">
{% blocktrans %}
Alas! Your path has led you astray in the depths of the enchanted forest. The elusive plant you seek has hidden
itself amidst the mystical foliage. If you have a map, please share it with us!
{% 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 %}