templates for self-hosting game jams (or any other kind of jam tbh)
1<article class="item" data-date="{{ include.page.date }}" data-categories="{% for tag in include.page.tags %}tags:{{ tag }}{% unless forloop.last %} {% endunless %}{% endfor %} {% for p in include.page.platforms %}platforms:{{ p }}{% unless forloop.last %} {% endunless %}{% endfor %}" data-title="{{ include.page.title }}" data-authors="{% if include.page.authors %}{{ include.page.authors | map: 'name' | join: ', ' }}{% endif %}">
2 <div class="thumb">
3 <a href="{{ include.page.url }}"><img src="{{ include.page.url }}/{{ include.page.thumbnail }}" alt="{{ include.page.title }} thumbnail image" class="thumb-img" /></a>
4 <div class="platform-icons">
5 {% for p in include.page.platforms %}
6 <span class="icon {{ p }}" title="{{ p }}">{{ p }}</span>
7 {% endfor %}
8 </div>
9 </div>
10 <h3><a href="{{ include.page.url }}">{{ include.page.title }}</a></h3>
11 <div class="authors">
12 {% if include.page.authors %}
13 {% for author in include.page.authors %}
14 {% if author.link != "" %}
15 <a href="{{ author.link }}" target="_blank">{{ author.name }}</a>
16 {% else %}
17 {{ author }}
18 {% endif -%}{% unless forloop.last -%}, {% endunless -%}
19 {% endfor -%}
20 {% else %}
21 Anonymous
22 {% endif %}
23 </div>
24</article>