{% extends "base.html" %} {% block page_title %}{{ year }}-{{ month }} ยท {{ config.title | default("bckt") }}{% endblock page_title %} {% block content %} Archive {{ year }}-{{ month }} {% set page_size = posts | length %} {% for post in posts %} {% set post_number = page_size - loop.index0 %} {% if post.type == "note" %} {% include "partials/summary-note.html" %} {% else %} {% include "partials/summary-default.html" %} {% endif %} {% else %} No posts yet. {% endfor %} {% include "partials/sidebar.html" %} {% endblock content %}
Archive
No posts yet.