{% extends "base.html" %} {% block seo_tags %} {# TODO: add support for og:image using metadata #} {% endblock seo_tags %} {% block title %}{{ metadata.title | title }}{% endblock title %} {% block content %} {{ content | safe }} {# Latest 5 non-draft blog posts, ordered automatically by date #} {% if posts | filter(attribute="draft", value=false) | length > 0 %}

Recent posts

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

{{ post.title }}

{{ post.description }}

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

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