mirror of
https://github.com/zaphar/jeremy.marzhillstudios.com.git
synced 2025-07-23 19:49:57 -04:00
16 lines
503 B
HTML
16 lines
503 B
HTML
{% extends "index.html" %}
|
|
|
|
{% block content %}
|
|
<div class="taxonomy">
|
|
<h2>{{ term.name }}</h2>
|
|
{% for page in term.pages %}
|
|
<div class="taxonomy__item">
|
|
<span class="taxonomy__item__time">{{ page.date | date(format="%F") }}</span>
|
|
<span class="taxonomy__item__title">
|
|
<a href="{{ page.permalink }}">{{ page.title }}</a>
|
|
</span>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% endblock content %}
|