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

14 lines
405 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>
2023-11-15 17:27:04 +01:00
<div 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-15 17:27:04 +01:00
</div>
2023-10-05 11:42:24 +02:00
</body>
</html>