swt23w23/src/main/resources/templates/welcome.html
Simon Bruder bac025fd0a
Make project REUSE compliant
This finally makes the licensing under AGPL-3.0-or-later explicit after
I got the okay from the kickstart source owners.

This also checks the REUSE compliance in a pre commit hook, and
therefore also in CI.
2023-12-11 17:59:14 +01:00

23 lines
698 B
HTML

<!--/*-->
SPDX-License-Identifier: Apache-2.0 AND AGPL-3.0-or-later
SPDX-FileCopyrightText: 2014-2015 Oliver Drotbohm
SPDX-FileCopyrightText: 2021-2022 Oliver Drotbohm
SPDX-FileCopyrightText: 2023 swt23w23
<!--*/-->
<!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}">
<body>
<div layout:fragment="content">
<p>Willkommen bei Catering Mampf.</p>
<p>
Bei uns können Sie die besten Dienstleistungen rund ums Essen bestellen.
Von Omas 75sten Geburtstag bis zum Mieten von Küchenpersonal.
</p>
</div>
</body>
</html>