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
21 lines
537 B
HTML
21 lines
537 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="page-single">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col mx-auto" style="max-width: 48rem">
|
|
<div class="text-center mb-6">
|
|
<a href="{{ LANDING_PAGE_URL }}">
|
|
<img src="/static/siwsl.svg"
|
|
style="background-color: transparent; height: 80px">
|
|
</a>
|
|
</div>
|
|
{% block single_content %}{% endblock %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|