swt23w23/src/main/resources/templates/welcome.html

21 lines
587 B
HTML
Raw Normal View History

2023-10-05 11:42:24 +02:00
<!DOCTYPE html>
2023-11-13 20:09:39 +01:00
<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')}">
2023-11-05 09:38:25 +01:00
2023-11-13 20:09:39 +01:00
<body>
<section layout:fragment="content">
2023-11-15 17:09:39 +01:00
<p>Hier bekommen Sie übrigens nicht nur Wurst.</p>
<p>Test: (äöüß)</p>
2023-11-13 20:09:39 +01:00
</section>
2023-10-05 11:42:24 +02:00
</body>
2023-11-05 09:38:25 +01:00
<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>
2023-10-05 11:42:24 +02:00
</html>