pflaenz.li/pflaenzli/pflaenzli/templates/404.html
Jannis Portmann 27db76cdeb
All checks were successful
continuous-integration/drone/push Build is passing
Add new style
2023-07-08 16:51:07 +02:00

19 lines
829 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-pfl-secondary">{% trans "Report error" %}</a>
</div>
{% endblock content %}