{# {% import 'pcs/comments.html' as pcs with context %} #} {% extends "base.html" %} {% block html_lang %}{{ article.lang }}{% endblock %} {% block extra_head %} {% 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_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 %} {% endif %} {% for tag in article.tags %} {% endfor %} {% if article.styles %} {% for style in article.styles %} {{ style|format(SITEURL) }} {% endfor %} {% endif %} {% if article.js %} {% for script in article.js %} {% if 'top' in script[-7:] %} {{ script[:-5]|format(SITEURL) }} {% endif %} {% endfor %} {% endif %} {% endblock %} {% block title %}{{ article.title|striptags }}{% endblock %} {% block content %}

{{ article.title }}

{% if article.toc %} {% endif %} {{ article.content }}

{{ _('Comentarios') }}

{% if article.comments %} {% for comment in article.comments %}

{% if comment.avatar %} {{ comment.author }} {% else %} {{ comment.author }} {% endif %}

{% if comment.web %}

{{ comment.author }}

{% else %}

{{ comment.author }}

{% endif %} {{ comment.content }} Permalink | {{ comment.date }}
{% endfor %} {% endif %}

placeholder

{{ _('Puede formatear su comentario con') }} Markdown.

{% if DEFAULT_LANG == 'en' %} {{ _('Política de uso') }} {% elif DEFAULT_LANG == 'fr' %} {{ _('Política de uso') }} {% else %} {{ _('Política de uso') }} {% endif %}

{% endblock %}