<!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"> <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> <div style="background-color: white; opacity:0.8;"> <nav th:include="menu::menu" ></nav> </div> <br> <br> <br> <div style="background-color: white; opacity:0.8;"> <div class="container"><h2 th:text="${title}">Titel</h2></div> <div class="container"><h3 th:text="${title2}">Titel</h3></div> <div class="container"><p th:text="${message}">Nachricht</p></div> </div> <div th:include="foot::foot"></div> </body> </html>