mirror of
https://github.com/avitex/avitex.github.io
synced 2024-11-16 17:39:57 +00:00
9 lines
314 B
HTML
9 lines
314 B
HTML
|
{% extends "index.html" %}
|
||
|
|
||
|
{% 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 %}
|