{% extends "base.html" %} {% block page_title %}{{ tag }} ยท {{ config.title | default("bckt") }}{% endblock page_title %} {% block content %} Tag {{ tag }} {% 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 for this tag. {% endfor %} {% if pagination.prev or pagination.next %} {% if pagination.prev %}Newer posts{% endif %} {% if pagination.next %}Older posts{% endif %} {% endif %} {% include "partials/sidebar.html" %} {% endblock content %}
Tag
No posts for this tag.