Files

34 lines
996 B
Plaintext
Raw Permalink 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 %}
2026-09-17 14:54:17 -07:00
<a href="{{ zine.data.site }}" target="_blank">{{ zine.data.artist }}</a>
2026-08-26 13:46:34 -07:00
{% else %}
{{ zine.data.artist }}
{% endif %}
</h2>
2026-09-15 18:03:20 -07:00
{% if zine.data.titles %}
{% 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-26 13:46:34 -07:00
{% else %}
2026-09-15 18:03:20 -07:00
<p>is planning a {{ zine.data.format }} zine...</p>
2026-08-26 13:46:34 -07:00
{% endif %}
2026-08-25 21:42:47 -07:00
<blockquote>{{ zine.content | safe }}</blockquote>
</li>
{% endfor %}
</ul>