{% extends "madga/blog/base.html" %} {% block title %}Blog · {{ site.name }}{% endblock %} {% block content %} {# Grid layout: 2-col cards with featured image on top. #}

{% if category %}{{ category.name }}{% elif tag %}#{{ tag.name }}{% else %}Blog{% endif %}

{% if category %}

{{ category.description }}

{% endif %}
{% if categories %} {% endif %}
{% for post in posts %} {% if post.featured_image %}
{{ post.featured_image.alt_text }}
{% else %}
{% endif %}
{% if post.category %}·{{ post.category.name }}{% endif %}

{{ post.title }}

{% if post.excerpt %}

{{ post.excerpt }}

{% endif %}
{% empty %}

No hay posts aún.

{% endfor %}
{% endblock %}