--- /dev/null
+{% extends '@RapsysTree/_base.html.twig' %}
+{% block content %}
+ <article>
+ <header>
+ <h2><a href="{{ path('rapsystree') }}">{{ title.section }}</a></h2>
+ <p>{{ description }}</p>
+ </header>
+ <div>
+ {% for id, path in roots %}
+ <section>
+ <header>
+ <h3><a href="{{ path('rapsystree_directory', {path: id}) }}">{{ id }}</a></h3>
+ </header>
+ TODO: list of images ?
+ </section>
+ {% endfor %}
+ </div>
+ </article>
+{% endblock %}