{% extends "madga/blog/base.html" %} {% block title %}Blog · {{ site.name }}{% endblock %} {% block content %} {# Compact: title + date, dense rows, no excerpt. #} {% if category %}{{ category.name }}{% elif tag %}#{{ tag.name }}{% else %}Blog{% endif %} {% if categories %} Todos {% for c in categories %} · {{ c.name }} {% endfor %} {% endif %} {% for post in posts %} {{ post.published_at|date:"j M Y" }} {{ post.title }} {% empty %} No hay posts aún. {% endfor %} {% endblock %}