1bit.pw/templates/blog/categories/single.html

10 lines
439 B
HTML

{% extends "content.html" %}
{% import "post_macros.html" as post_macros %}
{% block title %}Category {{ term.name }} - {{ config.title }}{% endblock %}
{% block content %}
<h1>Category: <code>{{ term.name }}</code> <small>(<a href="{{ get_taxonomy_url(kind="blog/categories", name=term.name) }}rss.xml">RSS</a>)</small></h1>
{% for page in term.pages %}
{{ post_macros::page_in_list(page=page) }}
{% endfor %}
{% endblock content %}