app-MAIL-temp/templates/default.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

17 lines
328 B
HTML

{% extends "base.html" %}
{% block content %}
<div class="flex-fill">
{% include "header.html" %}
<div class="my-2 my-md-2">
<div class="container pt-1" style="min-height: 800px">
{% block default_content %}{% endblock %}
</div>
</div>
</div>
{% include "footer.html" %}
{% endblock %}