{% extends "default.html" %} {% block title %}Home{% endblock %} {% block content %}

All articles

{% for article in articles %}
{% if article["image"] %} {{ article['image-alt'] }} {% endif %}

{{ article["title"] }}

{{ article.date | strftime("%Y-%m-%d") }}

{{ article.content | first_paragraph | markdown }}

{% endfor %} {% endblock %}