{{ 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 current_user.usuario != comment.user_id %}-
{% endif %} {% if current_user.tipo == 'admin' or post.author_id ==
current_user.usuario %}
-
-
{% endif %}