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

35 lines
1.2 KiB
HTML
Raw Normal View History

<!--/*-->
SPDX-License-Identifier: AGPL-3.0-or-later
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">
<head>
<meta charset="utf-8">
2023-11-15 17:27:04 +01:00
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" th:href="@{/webjars/bootstrap/css/bootstrap.min.css}">
2023-11-13 20:09:39 +01:00
<link rel="stylesheet" th:href="@{/resources/css/style.css}">
<title th:text="${#strings.concat((#strings.isEmpty(title) ? '' : title + ' | ') + 'Catering Mampf')}"></title>
</head>
<body>
2023-11-15 17:27:04 +01:00
<nav th:replace="~{navigation :: navigation}"></nav>
<main class="container py-4">
<h1 class="mb-4" th:text="${#strings.isEmpty(title)} ? 'Willkommen bei Catering Mampf' : ${title}"></h1>
2023-11-15 17:27:04 +01:00
<div layout:fragment="content"></div>
</main>
<div class="container">
<footer class="border-top my-4 py-4">
2023-11-16 17:21:34 +01:00
<p class="text-center">Cateringservice Mampf</p>
2023-11-15 17:27:04 +01:00
<p class="text-center">
2023-11-18 12:20:10 +01:00
<a href="mailto:catering@salespointframework.org">catering@salespointframework.org</a>
2023-11-15 17:27:04 +01:00
</p>
</footer>
</div>
2023-11-15 17:27:04 +01:00
<script th:src="@{/webjars/bootstrap/js/bootstrap.bundle.min.js}"></script>
</body>
</html>