generated from inherentlee/11ty
34 lines
996 B
Plaintext
34 lines
996 B
Plaintext
<ul id="zine-container">
|
|
{% for zine in zines | sortAlphabeticallyByArtist %}
|
|
<li>
|
|
{% if allyears %}
|
|
<p>In {{ zine | getYear }},</p>
|
|
{% endif %}
|
|
<h2>
|
|
{% if zine.data.site %}
|
|
<a href="{{ zine.data.site }}" target="_blank">{{ zine.data.artist }}</a>
|
|
{% else %}
|
|
{{ zine.data.artist }}
|
|
{% endif %}
|
|
</h2>
|
|
|
|
{% 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>
|
|
{% else %}
|
|
<p>is planning a {{ zine.data.format }} zine...</p>
|
|
{% endif %}
|
|
|
|
<blockquote>{{ zine.content | safe }}</blockquote>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|