{% extends "base_template.html" %} {% block title %}Accueil{% endblock %} {% block content %}
{% for section in sections %} {% if section.catalog %}

{{ section.title }}

{% endif %} {% endfor %}

Autre schéma

Le schéma doit être au format Table Schema.
{% for section in sections %} {% if section.links %}

{{ section.title }}

{% for item in section.links %}

{{ item.title }}

{{ item.description }}

Utiliser
{% endfor %}
{% endif %} {% endfor %}
{% endblock %}