{% extends "base.html" %} {% block seo_tags %} {% endblock seo_tags %} {% block title %}{{ metadata.title | title }}{% endblock title %} {% block content %}

Posts

{% for post in posts | filter(attribute="draft", value=false) | sort(attribute="created") | reverse %}

{{ post.title }}

{{ post.description }}

{% if post.truncate_char is defined and post.truncate_char is matching("^nil$") %} {% set truncate_char = "" %} {% else %} {% set truncate_char = "…" %} {% endif %} {{ post.raw | striptags | truncate(length=post.truncate | default(value=300), end=truncate_char) | safe }}

Read more …
{% endfor %}
{% endblock content %}