<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org"> <head th:include="head::head"></head> <body> <div class="container-fluid"> <h1>Schleicherhof</h1> </div> <nav th:include="menu::menu"></nav> <div class="container-fluid"><h2 th:text="${title}">Willkommen!</h2></div> <div class="container-fluid"><p th:text="${message}">Text</p></div> <div class="container-fluid"> <table class="table table-striped table-hover"> <tbody> <tr> <th th:if="${edit}"></th> <th th:if="${edit}"></th> <th>Anzahl Betten</th> <th>Preis Erwachsener</th> <th>Preis Kind</th> <th>Zimmername</th> </tr> <tr th:each="zimmer : ${zimmer}"> <td th:text="${zimmer.zimmername}"></td> <td th:text="${zimmer.preisErw}"></td> <td th:text="${zimmer.preisKind}"></td> <td th:text="${zimmer.anzbett}"></td> </tr> </tbody> </table> </div> <div th:include="foot::foot"></div> </body> </html>