{% extends "blog/base.html" %} {% block breadcrumb %} {% endblock %} {% block content %}
{% regroup posts by published_at|date:"Y年m月" as date_groups %} {% for group in date_groups %}

{{ group.grouper }}

{% empty %}

暂无文章

{% endfor %}
{% endblock %}