{% extends "base.html" %} {% block html_lang %}{{ article.lang }}{% endblock %} {% block extra_head %} {% endblock %} {% block extra_comment %} {% endblock %} {% block head %} {{ super() }} {% import 'translations.html' as translations with context %} {% if translations.entry_hreflang(article) %} {{ translations.entry_hreflang(article) }} {% endif %} {% if article.modified %} {% endif %} {% set og_description = article.summary.split(ANOTHER_READ_MORE_LINK_FORMAT[:6])[0][3:]|striptags|escape %} {% set OG_DESC_LENGTH = 175 %} {% if og_description|length >= OG_DESC_LENGTH %} {# Quita la última palabra para no dejarla incompleta #} {% set og_description = og_description[:OG_DESC_LENGTH].split(' ')[:-1]|join(' ') %} {% if not og_description[-1] in ['.', '?', ':', '!'] %} {% set og_description = og_description + '…' %} {% endif %} {% endif %} {% if article.image %} {% elif OPEN_GRAPH_IMAGE %} {% endif %} {% if article.og_video %} {% endif %} {% for tag in article.tags %} {% endfor %} {% if article.styles %} {% for style in article.styles %} {{ style }} {% endfor %} {% endif %} {% endblock %} {% block title %}{{ article.title|striptags }}{% endblock %} {% block menu_header %}{% endblock menu_header %} {%- block content -%}
{% if not HIDE_AUTHORS and article.authors %} {% for author in article.authors %} {{ author }} {% endfor %} {% endif %}
{% set año = article.date|strftime('%Y') %} {% set mes = article.date|strftime('%m') %} {% set nombre_mes = article.date|strftime('%B') %}