penguincoder-org/templates/taxonomy_list.html

20 lines
440 B
HTML

{% extends "page.html" %}
{% block title %}
Taxonomies
{% endblock title %}
{% block content %}
<section>
{% for term in terms %}
<article>
<div class="title-text">
<a href="{{ term.permalink }}">{{ term.name }}</a>
</div>
<p class="text">
This term has a permanent slug of <code>{{ term.slug }}</code> and has {{ term.pages | length }} pages.
</p>
</article>
{% endfor %}
</section>
{% endblock content %}