浏览代码

Fix generation of index for private galleries

master
Marien Fressinaud 6 年前
父节点
当前提交
8753f11a2e
共有 1 个文件被更改,包括 4 次插入4 次删除
  1. 4
    4
      Herisson/index.html.j2

+ 4
- 4
Herisson/index.html.j2 查看文件

@@ -22,16 +22,16 @@
<h2>Albums</h2>
<div class="galleries">
{% for gallery in galleries -%}
<div class="gallery-cover">
{% if not gallery.private %}
{% if not gallery.private %}
<div class="gallery-cover">
<a href="{{ gallery.url }}">
<img src="{{ gallery.cover_photo.thumb_url }}" alt="" />
<span class="gallery-cover-name">
{{ gallery.name }}
</span>
</a>
{% endif %}
</div>
</div>
{% endif %}
{% endfor %}
</div>
</div>

正在加载...
取消
保存