{% extends "base.html" %} {% block title %}{{ _("Hottest posts") }}{% end block %} {% block container %}

{{ _("The hottest posts of the last month") }}

{% for entry in entries %}
{{ entry.author.name }}

{{ entry.title }}

{{ _("by") }} {{ entry.author.name }}, {{ locale.format_date(entry.published, relative=True, shorter=True) }}

{% end %}
{% end block %}