{% extends "madga/blog/base.html" %} {% block title %}{{ site.name }}{% endblock %} {% block content %} {# Minimal: just the most-recent posts as a clean list. No hero, no chrome. #}

{{ site.name }}

{% if site.description %}

{{ site.description }}

{% endif %}
{% if posts %}
    {% for post in posts %}
  1. {{ post.title }}
  2. {% endfor %}
Ver todo el blog → {% else %}

Sin posts todavía.

{% endif %}
{% endblock %}