{% extends "../base.html" %} {% block title %}{{ _("IPFire Planet") }} - {% if author %}{{ _("%s's posts") % author.name }}{% elif year %}{{ _("Posts from %s") % year }}{% end %}{% end block %} {% block body %}
{% block bodyA %} {% if entries %} {% for (y, m), posts in entries %}

{% if not year %}{{ y }},{% end %} {{ format_month_name(m) }}

{% for p in posts %}
{{ locale.format_date(p.published, shorter=True) }}
{% if not author %} {{ p.author.name }} {{ p.author.name }} {% end %} {{ p.title }}
{% end %} {% end %}
{% else %} {% if author %}

{{ _("%s did not write any posts, yet.") % author.name }}

{% end %} {% end %} {% end block %}
{% if author %}
{% module PlanetAuthorBox(author) %}
{% end %}
{% end block %}