{% extends "internal/base.html" %} {% import "internal/post-card.html" as card %} {% block title %}Posts{% endblock %} {% block content %} All posts {% for post in posts %} {{ card.card(post, site, now) }} {% endfor %} {% endblock %}