swt23w23/src/main/resources/templates/welcome.html
2023-11-21 18:00:29 +01:00

22 lines
667 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!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 Wursts 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>