{% if nzines is not empty %} {% for item in nzines %}

{% if item and item.title %} {{ item.title }} {% elseif item.slug %} {{ item.slug }} {% else %} Untitled Magazine {% endif %}

{% if item and item.summary %}

{{ item.summary }}

{% endif %} {# Category links (from 'a' tags) #} {% set categoryTags = [] %} {% if item.tags is defined %} {% for tag in item.tags %} {% if tag[0] is defined and tag[0] == 'a' %} {% set categoryTags = categoryTags|merge([tag]) %} {% endif %} {% endfor %} {% endif %} {% if categoryTags is not empty %}
    {% for catTag in categoryTags %}
  • {% endfor %}
{% endif %}
{% endfor %} {% else %}

No magazines yet.

{% endif %}