{% extends 'layout.html.twig' %} {% block body %}

{{ magazine.title|default(magazine.slug|default(mag)) }}

{% if magazine.summary is defined and magazine.summary %}

{{ magazine.summary }}

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

No categories yet.

{% endif %}
{% if categoryTags is not empty %} {% for cat in categoryTags %} {% endfor %} {% endif %}
{% endblock %}