{% set current_theme = current_theme() %} {{ current_theme.headertags() }} {{ current_theme.local_style() }} {{ post.title }} - {{ config().sitio_web }} {{ current_theme.navbar() }}
{{ current_theme.notify() }}

{{ post.title }}

{{ _('Por') }} {{ post.author.nombre }} {{ post.author.apellido or '' }} {% if post.published_at %} {{ _('el') }} {{ post.published_at.strftime('%d/%m/%Y a las %H:%M') }} {% else %} {{ _('el') }} {{ post.timestamp.strftime('%d/%m/%Y a las %H:%M') }} {% endif %} {% if post.view_count is defined and post.view_count is not none %} - {{ post.view_count }} {{ _('vistas') if post.view_count != 1 else _('vista') }}{% endif %}
{% if post.tags %}
{% for tag in post.tags %} {{ tag.name }} {% endfor %}
{% endif %}
{{ mkdown2html(post.content) | safe }}
{% if current_user.is_authenticated and (current_user.tipo == 'admin' or post.author_id == current_user.usuario) %} {% endif %}
{% if post.allow_comments %}

{{ _('Comentarios') }} ({{ comments|length }})

{% if current_user.is_authenticated and comment_form %}

{{ _('Agregar comentario') }}

{{ comment_form.hidden_tag() }}
{{ comment_form.content.label(class="form-label") }} {{ comment_form.content(class="form-control", rows="4") }}
{% elif not current_user.is_authenticated %}
{{ _('Inicia sesión') }} {{ _('para comentar.') }}
{% endif %} {% if comments %}
{% for comment in comments %}
{{ comment.user.nombre }} {{ comment.user.apellido or '' }} {{ comment.timestamp.strftime('%d/%m/%Y a las %H:%M') }}
{% if current_user.is_authenticated %} {% endif %}
{{ comment.content }}
{% endfor %}
{% endif %}
{% endif %}
{{ _('Información del autor') }}
{{ post.author.nombre }} {{ post.author.apellido or '' }}
{% if post.author.bio %}

{{ post.author.bio }}

{% endif %} {{ _('Ver todas las entradas de este autor') }}
{% if post.tags %}
{{ _('Etiquetas relacionadas') }}
{% for tag in post.tags %} {{ tag.name }} {% endfor %}
{% endif %}