{% for zine in zines | sortAlphabeticallyByArtist %}
  • {% if allyears %}

    In {{ zine | getYear }},

    {% endif %}

    {% if zine.data.site %} {{ zine.data.artist }} {% else %} {{ zine.data.artist }} {% endif %}

    {% if zine.data.titles.length == 1 %}

    made a {{ zine.data.format }} zine called...

    {{ zine.data.titles }}

    {% else %}

    made {{ zine.data.format }} zines called...

    {% for title in zine.data.titles %}

    {{ title }}

    {% endfor %} {% endif %}

    and the original blurb was...

    {{ zine.content | safe }}
  • {% endfor %}