mirror of
https://github.com/st-tu-dresden-praktikum/swt23w23
synced 2024-07-19 21:04:36 +02:00
22 lines
667 B
HTML
22 lines
667 B
HTML
<!DOCTYPE html>
|
||
<html xmlns:th="http://www.thymeleaf.org"
|
||
xmlns:sec="http://www.thymeleaf.org/extras/spring-security"
|
||
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
|
||
layout:decorate="~{layout.html(title='Wilkommen bei Wurst’s Catering')}">
|
||
|
||
<body>
|
||
<section layout:fragment="content">
|
||
<!--<h1 th:text="#{welcome.title}">Welcome!</h1>-->
|
||
<p th:text="'Hier bekommen Sie übrigens nicht nur Wurst.'"></p>
|
||
<p th:text="'Test: (äöü)'"
|
||
</section>
|
||
</body>
|
||
|
||
<footer style="bottom: 0; position: absolute;">
|
||
<p>© Hannes Wurst @ Mampf GmbH</p>
|
||
<p>
|
||
<a href="mailto:catering@mampf.com">catering@mampf.com</a>
|
||
</p>
|
||
</footer>
|
||
</html>
|