app-MAIL-temp/templates/error.html
Carlos Quintana cb7868bdca
Add djlint (#1122)
* Add DJlint configuration

* Initial reformat for djlint

* Add template linting to CI

* Add explanation for HTML template checks in CONTRIBUTING.md
2022-06-29 11:28:26 +02:00

23 lines
549 B
HTML

{% extends "base.html" %}
{% block content %}
<div class="page-content">
<div class="container text-center">
<div class="display-3 text-muted mb-5">
<i class="si si-exclamation"></i>
{% block error_name %}{% endblock %}
</div>
<h3 class="h3 mb-4">
{% block error_description %}{% endblock %}
</h3>
{% block suggestion %}
<a class="btn btn-primary" href="/">
<i class="fe fe-home mr-2"></i>Home Page
</a>
{% endblock %}
</div>
</div>
{% endblock %}