reitanlage-oranienburg/templates/gallery.html.twig

30 lines
994 B
Twig
Raw Normal View History

2020-01-03 12:36:14 +00:00
{% extends 'partials/base.html.twig' %}
{% set collection = page.collection() %}
{% set gallery = page.find(header_var('blog_url')|defined(theme_var('blog-page'))) %}
{% set show_breadcrumbs = header_var('show_breadcrumbs', [page, gallery])|defined(true) %}
{% block content %}
{{ page.content }}
{% if show_breadcrumbs and config.plugins.breadcrumbs.enabled %}
{% include 'partials/breadcrumbs.html.twig' %}
{% endif %}
{% for child in collection %}
{% if loop.first %}
<hr class="mb-4 mt-1">
{% else %}
<hr class="my-4">
{% endif %}
<a href="{{ child.url }}">
{{ child.title }}
2020-01-03 12:36:14 +00:00
<div class="card-columns">
{% for media_item in child.media.images[:10] %}
<div class="card">
2020-01-26 15:21:58 +00:00
{{ media_item.quality(25).html }}
2020-01-03 12:36:14 +00:00
</div>
{% endfor %}
</div>
</a>
{% endfor %}
{% endblock %}