{% extends "internal/base.html" %} {% import "internal/post-card.html" as card %} {% block title %}{{author.name}}{% endblock %} {% block description %}{{author.description | string}}{% endblock %} {% block content %}
{% if author.image is not none %} {{author.image.html(site)}} {%- endif -%}

Posts

{% for post in posts %} {{ card.card(post, site, now) }} {% endfor %}
{% endblock %}