t-r.de/theme/templates/wide-cards.html

39 lines
1.4 KiB
HTML

{% extends "page.html" %}
{% block content_body %}
{# build list of pages where the slugs correspond to an entry in page.wide_cards; some hackiness required to keep the
original order #}
{% set wcards = [] %}
{% for wide_card in page.wide_cards %}
{% do wcards.append(pages | selectattr("slug", "==", wide_card) | list | first) if pages | selectattr("slug", "==",
wide_card) | list | first is defined %}
{% endfor %}
{# now we can finally iterate over the corcect pages #}
{% for wcard in wcards %}
<article class="wcard">
<div class="wcard-title">
<h2><a href="{{ SITEURL }}/{{ wcard.title|lower }}/">{{ wcard.title }}</a></h2>
</div>
<div class="wcard-gallery">
{% if wcard.featured_images is defined %}
<div class="wcard-gallery-mask">
<ul>
{% for image in wcard.featured_images %}
<li class="wcard-image" style="animation-delay: {{ loop.index0 * 5 }}s">
<a href="{{ SITEURL }}/{{ image.post }}">
<img src="{{ SITEURL }}/{{ image.pic }}" alt="{{ image.alt }}" {% if image.y_offset is defined %}style="bottom: {{ image.y_offset }};" {% endif %} />
</a>
<div class="wcard-tooltip">
<p>{{ image.alt }}</p>
</div>
</li>
{% endfor %}
</div>
{% endif %}
</div>
</article>
{% endfor %}
{% endblock content_body %}
{% block content_footer %}
{% endblock content_footer %}