<!DOCTYPE html> <html lang="de" xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org"> <head th:include="head::head"></head> <body class="container" style="background-image: url('photos/background.jpg'); background-repeat:no-repeat; background-size:100%;" > <div class="container-fluid"> <h1><img th:src="@{/photos/logo.png}" alt="Logo" width="470" height="150"/></h1> </div> <nav th:include="menu::menu" ></nav> <div class="container" style="background-color: white; opacity:0.5;"> <div class="container"><h2 th:text="${title}">Titel</h2></div> <div class="container"><h3 th:text="${title2}">Titel</h3></div> <div class="container"><p style="color: red" th:text="${message}">Nachricht</p></div> </div> <div th:include="foot::foot"></div> </body> </html>