{{ post.title }}
{{ _('Por') }} {{ post.author.nombre }} {{ post.author.apellido or '' }} {% if
post.published_at %} {{ _('el') }} {{ post.published_at.strftime('%d/%m/%Y') }} {% else %} {{
_('el') }} {{ post.timestamp.strftime('%d/%m/%Y') }} {% endif %} {% if post.comment_count > 0
%} - {{ post.comment_count }} {{ _('comentarios') if post.comment_count != 1 else
_('comentario') }} {% 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 %}
{{ limpiar_html(mkdown2html(post.content[:300])) }} {% if post.content|length > 300 %}...{%
endif %}
{{ _('Leer más') }}