{% set current_theme = current_theme() %} {% set config = config() %} {{ current_theme.headertags() }} {{ current_theme.local_style() }} Blog - {{ config.titulo }} {{ current_theme.navbar() }}
{{ current_theme.notify() }}

{{ config.titulo }} - Blog

{{ _('Todas las entradas') }} {% for tag in tags %} {{ tag.name }} {% endfor %}
{% if posts %}
{% for post in posts %}
{% if post.cover_image and blog_cover(post.id) %} {{ post.title }} {% else %}
{{ post.title[:50] }}
{% endif %}

{{ post.title }}

{{ _('Por') }} {{ post.author.nombre }} {{ post.author.apellido or '' }} โ€ข {% if post.published_at %} {{ post.published_at.strftime('%d/%m/%Y') }} {% else %} {{ post.timestamp.strftime('%d/%m/%Y') }} {% endif %}
{% if post.tags %}
{% for tag in post.tags %} {{ tag.name }} {% endfor %}
{% endif %}
{{ limpiar_html(mkdown2html(post.content[:180])) }}{% if post.content|length > 180 %}...{% endif %}
{% endfor %}
{% if pagination.pages > 1 %}
{% endif %} {% else %}
{{ _('No hay entradas de blog publicadas en este momento.') }}
{% endif %}
{{ current_theme.footer() }}