{% extends "base" %} {% import "macros" as macros %} {% block title %} {{ blog.title }} {% endblock title %} {% block content %}
{{ blog.summary }}
{{ "{{ count }} authors in this blog: " | _n(singular="One author in this blog: ", count = n_authors) }} {% for author in authors %} {{ author.name }}{% if not loop.last %},{% endif %} {% endfor %}
{{ "{{ count }} articles in this blog" | _n(singular="One article in this blog", count = n_articles) }}
{{ "No posts to see here yet." | _ }}
{% endif %} {% if is_author %} {{ "New article" | _ }} {% endif %}