{% extends "base" %} {% import "macros" as macros %} {% block title %} {{ blog.title }} {% endblock title %} {% block content %}

{{ blog.title }} (~{{ blog.actor_id }})

{{ blog.summary }}

{{ "Latest articles" | _ }}

{% if recents | length < 1 %}

{{ "No posts to see here yet." | _ }}

{% endif %} {% if is_author %} {{ "New article" | _ }} {% endif %}
{% for article in recents %} {{ macros::post_card(article=article) }} {% endfor %}
{% endblock content %}