Files
CampOrganizer2/src/main/resources/templates/camplist.html
2024-02-23 11:50:33 +01:00

14 lines
512 B
HTML

<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org" layout:decorate="~{template}" xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout" xmlns:sec="http://www.thymeleaf.org/extras/spring-security">
<head>
<title>Camp Organizer 2</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
<th:block layout:fragment="content">
<div class="mainpage">
<div th:replace="~{/fragments/camplist.html::camplist(camps=${camps})}"></div>
</div>
</th:block>
</body>
</html>