{% extends "base.twig" %} {% block content %}

{{ current_language == 'en' ? 'Announcements' : 'Annonces' }}

{% include 'partials/category-filters.twig' %}
{% for post in posts %} {% include 'partials/post-card.twig' with { post: post, card: cards[post.ID], show_category: true } %} {% endfor %}
{% endblock %}