mirror of
https://github.com/simple-login/app.git
synced 2024-11-01 03:21:01 +01:00
cb7868bdca
* Add DJlint configuration * Initial reformat for djlint * Add template linting to CI * Add explanation for HTML template checks in CONTRIBUTING.md
23 lines
549 B
HTML
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 %}
|