{% extends 'partials/base.html.twig' %}
{% block content %}
{% for m in header.modules %}
{% include 'partials/modules.html.twig' with {'module':m } %}
{% endfor %}
{% if page.header.pod == true %}
Podcast
{{ page.content }}
{% set c = page.find("\/actualites").collection({'items':{'@taxonomy':{'category': 'podcast'}},'order': {'by': 'default', 'dir': 'asc'}}) %}
{% for item in c %}
{% include 'partials/grid-block.html.twig' with {'post':item } %}
{% endfor %}