mirror of
https://github.com/st-tu-dresden-praktikum/swt23w23
synced 2024-07-19 21:04:36 +02:00
Use more modern charset declaration
This also deduplicates the charset declaration to only specify it once.
This commit is contained in:
parent
5ea3bc8301
commit
6587b96b95
|
@ -4,7 +4,6 @@
|
||||||
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
|
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
|
||||||
layout:decorate="~{layout.html(title='Katalog')}">
|
layout:decorate="~{layout.html(title='Katalog')}">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
|
||||||
<link rel="stylesheet" th:href="@{/resources/css/style.css}">
|
<link rel="stylesheet" th:href="@{/resources/css/style.css}">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
|
@ -4,7 +4,6 @@
|
||||||
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
|
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
|
||||||
layout:decorate="~{layout.html(title='Kunden')}">
|
layout:decorate="~{layout.html(title='Kunden')}">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8" />
|
|
||||||
<link rel="stylesheet" th:href="@{/resources/css/customer/style.css}" />
|
<link rel="stylesheet" th:href="@{/resources/css/customer/style.css}" />
|
||||||
<title th:text="${title}"></title>
|
<title th:text="${title}"></title>
|
||||||
</head>
|
</head>
|
||||||
|
|
|
@ -4,7 +4,6 @@
|
||||||
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
|
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
|
||||||
layout:decorate="~{layout.html(title='Kunden bearbeiten')}">
|
layout:decorate="~{layout.html(title='Kunden bearbeiten')}">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8" />
|
|
||||||
<title>Kunde Bearbeiten</title>
|
<title>Kunde Bearbeiten</title>
|
||||||
|
|
||||||
<link
|
<link
|
||||||
|
|
|
@ -4,7 +4,6 @@
|
||||||
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
|
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
|
||||||
layout:decorate="~{layout.html(title='Personal bearbeiten')}">
|
layout:decorate="~{layout.html(title='Personal bearbeiten')}">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8" />
|
|
||||||
<title>Personal Bearbeiten</title>
|
<title>Personal Bearbeiten</title>
|
||||||
|
|
||||||
<link rel="stylesheet" th:href="@{/resources/css/staff/edit-style.css}" />
|
<link rel="stylesheet" th:href="@{/resources/css/staff/edit-style.css}" />
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
xmlns:sec="http://www.thymeleaf.org/extras/spring-security"
|
xmlns:sec="http://www.thymeleaf.org/extras/spring-security"
|
||||||
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout">
|
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout">
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
|
<meta charset="utf-8">
|
||||||
<link rel="stylesheet" th:href="@{/resources/css/style.css}">
|
<link rel="stylesheet" th:href="@{/resources/css/style.css}">
|
||||||
|
|
||||||
<!--<link th:href="@{/resources/css/style.css}" rel="stylesheet"-->
|
<!--<link th:href="@{/resources/css/style.css}" rel="stylesheet"-->
|
||||||
|
|
|
@ -4,7 +4,6 @@
|
||||||
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
|
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
|
||||||
layout:decorate="~{layout.html(title='Profil')}">
|
layout:decorate="~{layout.html(title='Profil')}">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8" />
|
|
||||||
<link rel="stylesheet" th:href="@{/resources/css/profile/style.css}" />
|
<link rel="stylesheet" th:href="@{/resources/css/profile/style.css}" />
|
||||||
<title th:text="#{profile.title}" />
|
<title th:text="#{profile.title}" />
|
||||||
</head>
|
</head>
|
||||||
|
|
|
@ -4,7 +4,6 @@
|
||||||
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
|
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
|
||||||
layout:decorate="~{layout.html(title='Angestellte')}">
|
layout:decorate="~{layout.html(title='Angestellte')}">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8" />
|
|
||||||
<link rel="stylesheet" th:href="@{/resources/css/staff/style.css}" />
|
<link rel="stylesheet" th:href="@{/resources/css/staff/style.css}" />
|
||||||
<title th:text="${title}"></title>
|
<title th:text="${title}"></title>
|
||||||
</head>
|
</head>
|
||||||
|
|
Loading…
Reference in a new issue