This repository has been archived on 2024-01-30. You can view files and clone it, but cannot push or open issues/pull-requests.
docs/templates/categories/single.html

13 lines
290 B
HTML

{% extends "base.html" %}
{% import "post_macros.html" as post_macros %}
{% block content %}
<h1>Posts in category "{{ term.name }}"</h1>
{% for page in term.pages %}
<p>
<h2><a href="{{ page.permalink | safe }}">{{ page.title }}</a></h2>
</p>
{% endfor %}
{% endblock content %}