Divent/divent/templates/error.html.j2
Michel Roux bf2918795f
Some checks failed
continuous-integration/drone/push Build is failing
Reformat with djlint
2022-09-07 17:57:09 +00:00

20 lines
568 B
Django/Jinja

{% extends "base.html.j2" %}
{% block content %}
<div id="box">
<div id="avatars">
<img src="{{ url_for('static', filename='img/deadlink.png') }}"
alt="{{ _('Link is dead') }}"
height="179"
width="173"/>
</div>
<hr />
<span id="details">{{ error }}</span>
</div>
<div id="buttons">
<a href="{{ url_for('index') }}">
<i class="fa fa-arrow-left"></i>
{{ _('Back to the beginning') }}
</a>
</div>
{% endblock content %}