41 lines
908 B
HTML
41 lines
908 B
HTML
<!doctype html>
|
|
<html xmlns:th="http://www.thymeleaf.org">
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<title>Galerie publique</title>
|
|
</head>
|
|
<body>
|
|
|
|
<h1>Galerie publique</h1>
|
|
|
|
<!-- Affichage des photos -->
|
|
<div>
|
|
<a th:each="p : ${photosPage.content}"
|
|
th:href="@{'/photo/' + ${p.id}}"
|
|
style="display:inline-block; margin:10px;">
|
|
<img th:src="@{'/photo/' + ${p.id} + '/raw'}"
|
|
width="150"
|
|
style="border:1px solid #ccc;"/>
|
|
</a>
|
|
</div>
|
|
|
|
<!-- Pagination -->
|
|
<div style="margin-top:20px;">
|
|
|
|
<a th:if="${currentPage > 0}"
|
|
th:href="@{/galerie(page=${currentPage - 1})}">
|
|
⬅ Précédent
|
|
</a>
|
|
|
|
<span th:text="'Page ' + (${currentPage} + 1)"></span>
|
|
|
|
<a th:if="${photosPage.hasNext()}"
|
|
th:href="@{/galerie(page=${currentPage + 1})}">
|
|
Suivant ➡
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|