mirror of
https://github.com/avitex/avitex.github.io
synced 2024-11-16 17:39:57 +00:00
10 lines
439 B
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 %}
|