{% extends "base.html" %}
{% block content %}
{{ meta.title }}
{{ content | safe }}
Newest articles
{% for post in posts %}
{# Ignore homepage itself #}
{% if post.url != "/" %}
-
{{ post.meta.date }}
{{ post.meta.title }}
{% endif %}
{% endfor %}
{% endblock %}