{% extends "base.html" %} {% block content %}

Blog

{% if articles %} {% set featured = articles[0] %}
{% if featured.featured_image %} {{ featured.title }} {% else %} {{ featured.title }} {% endif %}

{{ featured.title }}

{% if featured.published_at %} Publicado el {{ featured.published_at }} {% else %} Creado el {{ featured.created_at }} {% endif %}

{% if featured.summary %} {{ featured.summary }} {% else %} {{ featured.content|truncate(250) }} {% endif %}
Leer más
{% for article in articles[1:] %}
{% if article.featured_image %} {{ article.title }} {% else %} {{ article.title }} {% endif %}

{{ article.title }}

{% if article.published_at %} {{ article.published_at }} {% else %} {{ article.created_at }} {% endif %}

{% if article.summary %} {{ article.summary|truncate(100) }} {% else %} {{ article.content|truncate(100) }} {% endif %}

Leer más
{% endfor %}
{% if pagination.pages > 1 %}
{% endif %} {% else %}

No hay artículos publicados en este momento.

{% endif %}
{% endblock %}