{% extends "page.html" %}
{% block content_header %}
{% endblock content_header %}
{% block content_all %}
{% for p in pages if p.title == "Startseite" %}
{% if p.featured_news %}
{% set fn = p.featured_news %}
{% endif %}
{% set lr = cycler("row-reverse", "row") %}
{% from 'includes/macros.html' import fi %}
{% for i in p.index_cards %}
{{ fi( i.pic, i.link, i.alt, i.title, i.credit, i.credit_link) }}
{{ i.alt }}
{% endfor %}
{% endfor %}
{% include "includes/subscribe_form.html" %}
{% endblock content_all %}