I won't even try to chunk this up

This commit is contained in:
2026-08-26 13:46:34 -07:00
parent 5796b1f07c
commit 4bf83db4a7
68 changed files with 768 additions and 71 deletions
+23 -5
View File
@@ -1,10 +1,28 @@
<ul id="zine-container">
{% for zine in zines %}
{% for zine in zines | sortAlphabeticallyByArtist %}
<li>
<h2><a href="{{ zine.data.website }}">{{ zine.data.artist }}</a></h2>
<p>made a {{ zine.data.format }} zine called</p>
<h3>{{ zine.data.title }}</h3>
<p>and the original blurb was</p>
{% 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>
<blockquote>{{ zine.content | safe }}</blockquote>
</li>
{% endfor %}