18 lines
634 B
HTML
18 lines
634 B
HTML
{% extends "page.html" %}
|
|
|
|
{% block title %}{{ config.title }} | {{ term.name }}{% endblock title %}
|
|
|
|
{% block content %}
|
|
<main>
|
|
<h1>{{ taxonomy.name | capitalize }} - {{ term.name }} </h1>
|
|
<ul>
|
|
{% for page in term.pages %}
|
|
<li>
|
|
<a href="{{ page.permalink | safe }}">{{ page.title }}</a>
|
|
{% if page.date %}<span class="secondary small">({{ page.date | date(format="%d %b, %Y") }})</span>{% endif %}
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
<p><a href="{{ get_taxonomy(kind=taxonomy.name) | get(key='permalink') }}">All {{ taxonomy.name }}</a></p>
|
|
</main>
|
|
{% endblock content %}
|