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
17 lines
328 B
HTML
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 %}
|