forked from hacc/haccfiles
stuebinm
41d82ae436
we decided to: - get rid of unused packages - simpify the directory layout since we only have one host anyways - move our docs (such as they are) in-tree
12 lines
290 B
HTML
12 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 %}
|