[mod] fix indentation

This commit is contained in:
Laurent Peuch 2016-11-01 12:14:48 +01:00
parent 83cfbdce94
commit bc36f6b685

View File

@ -1,16 +1,16 @@
{% extends "base.html" %} {% extends "base.html" %}
{% block css %} {% block css %}
<link type="text/css" rel="stylesheet" href="static/css/fonts.css" media="screen,projection"/> <link type="text/css" rel="stylesheet" href="static/css/fonts.css" media="screen,projection"/>
<link type="text/css" rel="stylesheet" href="static/css/style.css" media="screen,projection"/> <link type="text/css" rel="stylesheet" href="static/css/style.css" media="screen,projection"/>
{% endblock %} {% endblock %}
{% block logo %} {% block logo %}
<img id="logo" src="static/img/logo.svg" /> <img id="logo" src="static/img/logo.svg" />
{% endblock %} {% endblock %}
{% block content %} {% block content %}
<div class="galleries-grid"> <div class="galleries-grid">
{% for galleries_line in galleries|reverse|batch(3)|reverse %} {% for galleries_line in galleries|reverse|batch(3)|reverse %}
<div class="galleries-line covers-{{ galleries_line|length }}"> <div class="galleries-line covers-{{ galleries_line|length }}">
{% for gallery in galleries_line|reverse %}<!-- comment tricks against space between inline-block {% for gallery in galleries_line|reverse %}<!-- comment tricks against space between inline-block
@ -45,6 +45,6 @@
-->{% endfor %} -->{% endfor %}
</div> </div>
{% endfor %} {% endfor %}
</div> </div>
<p style="visibility: hidden">.</p> <p style="visibility: hidden">.</p>
{% endblock %} {% endblock %}