1
0
mirror of https://github.com/avitex/avitex.github.io synced 2024-09-28 10:49:58 +00:00
1bit.pw/templates/blog/categories/single.html

10 lines
363 B
HTML
Raw Normal View History

2020-04-11 17:22:25 +00:00
{% extends "content.html" %}
{% import "post_macros.html" as post_macros %}
2018-08-22 13:30:07 +00:00
{% 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 %}