[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" %}
{% 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/style.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"/>
{% endblock %}
{% block logo %}
<img id="logo" src="static/img/logo.svg" />
<img id="logo" src="static/img/logo.svg" />
{% endblock %}
{% block content %}
<div class="galleries-grid">
<div class="galleries-grid">
{% for galleries_line in galleries|reverse|batch(3)|reverse %}
<div class="galleries-line covers-{{ galleries_line|length }}">
{% for gallery in galleries_line|reverse %}<!-- comment tricks against space between inline-block
@ -45,6 +45,6 @@
-->{% endfor %}
</div>
{% endfor %}
</div>
<p style="visibility: hidden">.</p>
</div>
<p style="visibility: hidden">.</p>
{% endblock %}