{% set año = article.date|strftime('%Y') %}
{% set mes = article.date|strftime('%m') %}
{% set nombre_mes = article.date|strftime('%B') %}
{% 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 %}