14 lines
512 B
HTML
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> |