|
{% 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 %}
|