Auto-indent the base template

This commit is contained in:
Rodolphe Breard 2019-07-22 23:15:22 +02:00
parent 9581ca16ab
commit 7ea58907e6

View file

@ -40,24 +40,24 @@
</section>
<footer class="footer">
<div class="container">
<ul>
<ul>
{% get_page 'licences' as licences_page %}
{% if licences_page %}
<a href="{% url 'page' 'licences' %}">{{ licences_page.title }}</a>
{% endif %}
--
<a href="{% url 'page' 'licences' %}">{{ licences_page.title }}</a>
{% endif %}
--
{% get_page 'legal' as legal_page %}
{% if legal_page %}
<a href="{% url 'page' 'legal' %}">{{ legal_page.title }}</a>
{% endif %}
--
<a href="{% url 'page' 'legal' %}">{{ legal_page.title }}</a>
{% endif %}
--
{% get_page 'contact' as contact_page %}
{% if contact_page %}
<a href="{% url 'page' 'contact' %}">{{ contact_page.title }}</a>
{% endif %}
<a href="{% url 'page' 'contact' %}">{{ contact_page.title }}</a>
{% endif %}
</ul>
</div>
</ul>
</div>
</footer>
</body>
</html>