X-Git-Url: https://git.rapsys.eu/treebundle/blobdiff_plain/85e71b7f13c02250139ee29ff3fb18ffcc5fabc6..be52ee36181a7928e7fa699b64ae30872e96c009:/templates/index.html.twig

diff --git a/templates/index.html.twig b/templates/index.html.twig
index b7fd158..0c95ed5 100644
--- a/templates/index.html.twig
+++ b/templates/index.html.twig
@@ -1,19 +1,25 @@
 {% 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>
+	{% if albums is defined and albums %}
+		{% for id, album in albums %}
+			<article>
+				<header>
+					<h2><a href="{{ album.link }}">{{ album.slug }}</a></h2>
+				</header>
+				{% if album.assets is defined and album.assets %}
+					{% for id, asset in album.assets %}
+						<section>
+							<header>
+								<h3><a href="{{ asset.link }}">{{ asset.path }}</a></h3>
+							</header>
+							<p>
+								TODO: miniature if target is a file or image list when directory ?
+							</p>
+						</section>
+					{% endfor %}
+				{% endif %}
+			</article>
+		{% endfor %}
+		{# TODO: XXX: add next and prev links ? #}
+	{% endif %}
 {% endblock %}