{% extends "main.html" %} {% block content %}

BLOG

{% for post in posts %}

{{ post.title }}

{% if post.excerpt %} {{ post.excerpt }} {% elif post.content | length > 0 %} {{ post.content | striptags | truncate(200, true, "...") }} {% else %}

Mehr Informationen im vollständigen Artikel.

{% endif %}

Weiterlesen
{% endfor %}
{% endblock %}