templates for self-hosting game jams (or any other kind of jam tbh)
1{% extends "index.html" %}
2
3{% block main_content %}
4<h2>#{{ term.name }}</h2>
5<section>
6 <ol class="post-list">
7 {% for post in term.pages %}
8 <li>
9 <a href={{ post.permalink }}><span class="date">{{ post.date }} /</span> <span class="title">{{ post.title }}</span></a>
10 {% if section.extra.tag_tax %}
11 {% set tax = section.extra.tag_tax %}
12 <span class="tags">
13 {% for tag in post.taxonomies[tax] %}
14 <a href="{{ get_taxonomy_url(kind=tax, name=tag) }}">{{ tag }}</a>
15 {% endfor %}
16 </span>
17 {% endif %}
18 </li>
19 {% endfor %}
20 </ol>
21</section>
22{% endblock main_content %}