This commit is contained in:
2026-08-25 21:42:47 -07:00
parent cfa6c5fabf
commit 5796b1f07c
24 changed files with 585 additions and 50 deletions
+11
View File
@@ -0,0 +1,11 @@
<ul id="zine-container">
{% for zine in zines %}
<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>
<blockquote>{{ zine.content | safe }}</blockquote>
</li>
{% endfor %}
</ul>