edgarluque.com/templates/taxonomy_single.html
2021-12-24 12:02:07 +01:00

17 lines
385 B
HTML

{% extends "base.html" %} {% block content %}
<h1 class="capitalize">{{ term.name }} articles</h1>
<ul class="posts">
{% for page in term.pages %}
<li>
<span><time datetime="{{ page.date }}">{{ page.date }}</time>: </span>
<a href="{{ page.permalink }}" title="{{ page.description }}"
>{{ page.title }}</a
>
</li>
{% endfor %}
</ul>
{% endblock content %}