penguincoder-org/templates/taxonomy_single.html

14 lines
273 B
HTML

{% extends "page.html" %}
{% block title %}
Taxonomies :: {{ term.name }}
{% endblock title %}
{% block content %}
<ol>
{% for page in term.pages %}
<li><a href="{{ page.permalink }}">{{ page.title }}</a> - {{ page.date }}
{% endfor %}
</ol>
{% endblock content %}