{% 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 }} vista{{ 's' if post.view_count != 1 else '' }}{% 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 %}