]> Raphaƫl G. Git Repositories - treebundle/blob - templates/index.html.twig
Import entities
[treebundle] / templates / index.html.twig
1 {% extends '@RapsysTree/_base.html.twig' %}
2 {% block content %}
3 <article>
4 <header>
5 <h2><a href="{{ path('rapsystree') }}">{{ title.section }}</a></h2>
6 <p>{{ description }}</p>
7 </header>
8 <div>
9 {% for id, path in roots %}
10 <section>
11 <header>
12 <h3><a href="{{ path('rapsystree_directory', {path: id}) }}">{{ id }}</a></h3>
13 </header>
14 TODO: list of images ?
15 </section>
16 {% endfor %}
17 </div>
18 </article>
19 {% endblock %}