RETAIL
{% for project in projects %}
{% if project.category == 'retail' %}
{{ project.shortname }}
{% endif %}
{% endfor %}
advertising
{% for project in projects %}
{% if project.category == 'advertising' %}
{{ project.shortname }}
{% endif %}
{% endfor %}
experiential
{% for project in projects %}
{% if project.category == 'experiential' %}
{{ project.shortname }}
{% endif %}
{% endfor %}
content
{% for project in projects %}
{% if project.category == 'content' %}
{{ project.shortname }}
{% endif %}
{% endfor %}