{% extends "base.html" %}
{% block content %}
{% block content_title %}
{% endblock %}
{% set icon_map = {
'performance': 'nf-md-projector',
'cinema': 'nf-md-theater',
'event': 'nf-fa-masks_theater',
'audio': 'nf-fa-music',
'cooperation': 'nf-fa-group',
'software': 'nf-md-code_braces',
'workshop': 'nf-md-school',
'blog': 'nf-fa-newspaper',
'installation': 'nf-fa-cubes',
'hardware': 'nf-cod-circuit_board'
} %}
{% for article in articles_page.object_list %}
{% set icon_class = icon_map.get(article.category|string|lower) %}
{% if icon_class %}{% endif %}
{{ article.title }}
[{{ article.locale_date }}]
{{ article.summary }}
{% endfor %}
{% include 'pagination.html' %}
{% endblock content %}