{% extends "core/base.html" %} {% load core_tags menu_tags static wagtailuserbar wagtailcore_tags wagtailimages_tags crispy_forms_tags %} {% block extra_css %} {% endblock %} {% block content %}

{{ page.title }}

{{ page.subtitle }}

{% for post in self.posts %}
{% if post.value.images|length == 1 %}
{% image post.value.images.0 max-650x450 as img %} {% image post.value.images.0 original as img_orig %} {{ img.alt }}
{% else %} {% endif %}

{{ post.value.title }}

{{ post.value.text|richtext }}
{% if post.value.url %} Mehr Infos {% endif %}
{% for image in post.value.images %} {% image image max-650x450 as img %} {% image image original as img_orig %} {% endfor %} {% endfor %}
{% endblock content %}