{% extends 'base_public.html.twig' %} {% block title %}{{ parcours.nom }} - Outils existants{% endblock %} {% block content %} {% set types = type_fiche_outil() %}

Quels sont les outils existants ?

{# Affichage du contenu TinyMCE de la rubrique si disponible #} {% if rubriqueContenu is defined and rubriqueContenu is not empty %}
{{ rubriqueContenu|raw }}
{% else %} {# Affichage par défaut si pas de contenu TinyMCE #}
{% for fiche in fiches %}
{% set niveau_badge_class = 'niveau-1' %}
{{ fiche.titre }} Niveau 1
{% if fiche.description %}

{{ fiche.description|u.truncate(100, '...') }}

{% endif %} {% if fiche.type == types.STANDARD %} En savoir plus {% else %} Accéder {% endif %}
{% endfor %}
{% endif %}
{% endblock content %} {% block javascripts %} {{ parent() }} {% endblock %}