forked from DGNum/gestioCOF
12 lines
380 B
HTML
12 lines
380 B
HTML
|
{% load static %}
|
||
|
|
||
|
{% if pressions %}
|
||
|
{% include "kfetcms/block_menu_category.html" with title="Pressions du moment" articles=pressions class="carte-inverted" %}
|
||
|
{% endif %}
|
||
|
|
||
|
{% regroup articles by category as categories %}
|
||
|
|
||
|
{% for category in categories %}
|
||
|
{% include "kfetcms/block_menu_category.html" with title=category.grouper.name articles=category.list %}
|
||
|
{% endfor %}
|