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

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

{{ blog.summary }}

{{ "{{ count }} authors in this blog: " | _n(singular="One author in this blog: ", count = n_authors) }} {% for author in authors %} {% if author.display_name %} {% set name = author.display_name %} {% else %} {% set name = author.username %} {% endif %} {{ name }}{% if not loop.last %},{% endif %} {% endfor %}

{{ "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 %}