Files
fedizinefest/_includes/zines.njk
T

30 lines
833 B
Plaintext
Raw Normal View History

2026-08-25 21:42:47 -07:00
<ul id="zine-container">
2026-08-26 13:46:34 -07:00
{% for zine in zines | sortAlphabeticallyByArtist %}
2026-08-25 21:42:47 -07:00
<li>
2026-08-26 13:46:34 -07:00
{% if allyears %}
<p>In {{ zine | getYear }},</p>
{% endif %}
<h2>
{% if zine.data.site %}
<a href="{{ zine.data.site }}">{{ zine.data.artist }}</a>
{% else %}
{{ zine.data.artist }}
{% endif %}
</h2>
{% if zine.data.titles.length == 1 %}
<p>made a {{ zine.data.format }} zine called...</p>
<h3>{{ zine.data.titles }}</h3>
{% else %}
<p>made {{ zine.data.format }} zines called...</p>
{% for title in zine.data.titles %}
<h3>{{ title }}</h3>
{% endfor %}
{% endif %}
<p>and the original blurb was...</p>
2026-08-25 21:42:47 -07:00
<blockquote>{{ zine.content | safe }}</blockquote>
</li>
{% endfor %}
</ul>