{% extends "core/base.html" %} {% load core_tags menu_tags static wagtailuserbar wagtailcore_tags wagtailimages_tags crispy_forms_tags %} {% block content %}
{% for post in self.posts %}
{% if post.value.images|length == 1 %}
{% image post.value.images.0 max-650x400 as img %} {% image post.value.images.0 original as img_orig %} {{ img.alt }}
{% else %}
{% endif %}
    {% if post.value.author %}
  • Von {{ post.value.author }}
  • {% endif %}
  • {{ post.value.date }}

{{ post.value.title }}

{{ post.value.text|richtext }}
{% if post.value.url %} {% endif %}

{% endfor %}
{% endblock content %}