{% set año = article.date|strftime('%Y') %}
{% set mes = article.date|strftime('%m') %}
{% set nombre_mes = article.date|strftime('%B') %}
{% if article.modified %}
{{ _('Modificado el %(fecha)s'|format(fecha='
')|format(article.modified.isoformat(), article.locale_modified)) }}
{% endif %}
{% if not HIDE_AUTHORS and article.authors %}
{% for author in article.authors %}
{{ author }}{% if not loop.last %}, {% endif %}
{% endfor %}
{% endif %}
{% import 'translations.html' as translations with context %}
{% if translations.translations_for(article) %}
{{ translations.translations_for(article) }}
{% else %}
{% endif %}