{% extends 'wagtail_gallery/gallery_base.html' %} {% load wagtailcore_tags wagtailimages_tags social_share i18n %} {% block main %}

{{ page.title }}


{{ page.body|richtext }}
{% for gallery in galleries %} {#
#}
{% image gallery.specific.gallery_image.all.0.image fill-600x400-c100 as header_image %} {{ gallery.title }}
{{ gallery.title }}
    {% if gallery.specific.categories.all %}
  • {% for categ in gallery.specific.categories.all %} {{ categ|capfirst }} {% endfor %}
  • {% endif %}
  • {{ gallery.first_published_at|date:"DATE_FORMAT" }}
  • {{ gallery.specific.gallery_image.count }}
{% if gallery.specific.description %} {{ gallery.specific.description }} {% else %}

{% trans "No description available" %}

{% endif %}
{#
#} {% endfor %}

{% endblock %}