{% extends "gallery/gallery_base.html" %} {% load staticfiles %} {% block title %} {{ gallery_title }} {% endblock %} {% block header %} {% include "gallery/partials/justify_images.html" %} {% endblock %} {% block bar_title %}
{{ gallery_title }}
{% endblock %} {% block content %}
{% for album in object_list %} {% if album.highlight %} {% with album.highlight as image %} {% include "gallery/partials/thumbnail.html" %} {% endwith %} {% else %} {% include "gallery/partials/thumbnail_empty.html" %} {% endif %} {% endfor %}
{% endblock %}