fix: Resolve broken CSS links
parent
21d66d5016
commit
2dbd408019
|
@ -12,7 +12,7 @@
|
|||
href="https://fonts.googleapis.com/css2?family=Barlow:wght@400;700&display=swap"
|
||||
rel="stylesheet"
|
||||
/>
|
||||
<link rel="stylesheet" href="/style.css" />
|
||||
<link rel="stylesheet" href="/header.css" />
|
||||
<link rel="stylesheet" href="/footer.css" />
|
||||
<link rel="stylesheet" href="style/core/style.css" />
|
||||
<link rel="stylesheet" href="style/core/header.css" />
|
||||
<link rel="stylesheet" href="style/core/footer.css" />
|
||||
</th:block>
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html xmlns:th="http://www.thymeleaf.org">
|
||||
<head>
|
||||
<div th:replace="~{_metadata :: metadata}"></div>
|
||||
<div th:replace="~{/core/_metadata :: metadata}"></div>
|
||||
<title>Impressum</title>
|
||||
</head>
|
||||
<body>
|
||||
<div th:replace="~{_header :: header(activePage=${home})}"></div>
|
||||
<div th:replace="~{/core/_header :: header(activePage=${home})}"></div>
|
||||
<div>
|
||||
<h1>Datenschutzerklärung</h1>
|
||||
|
||||
|
@ -100,6 +100,6 @@
|
|||
[E-Mail-Adresse für Datenschutzanfragen]
|
||||
</p>
|
||||
</div>
|
||||
<div th:replace="~{_footer :: footer}"></div>
|
||||
<div th:replace="~{/core/_footer :: footer}"></div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html xmlns:th="http://www.thymeleaf.org">
|
||||
<head>
|
||||
<div th:replace="~{_metadata :: metadata}"></div>
|
||||
<div th:replace="~{/core/_metadata :: metadata}"></div>
|
||||
<title>Impressum</title>
|
||||
</head>
|
||||
<body>
|
||||
<div th:replace="~{_header :: header(activePage=${home})}"></div>
|
||||
<div th:replace="~{/core/_header :: header(activePage=${home})}"></div>
|
||||
<div>
|
||||
<h1>Impressum</h1>
|
||||
<h2>Angaben gemäß § 5 TMG</h2>
|
||||
|
@ -76,6 +76,6 @@
|
|||
jeweiligen Autors bzw. Erstellers.
|
||||
</p>
|
||||
</div>
|
||||
<div th:replace="~{_footer :: footer}"></div>
|
||||
<div th:replace="~{/core/_footer :: footer}"></div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -3,11 +3,11 @@
|
|||
<head>
|
||||
<div th:replace="~{_metadata :: metadata}"></div>
|
||||
<title>My Skill Management System</title>
|
||||
<link rel="stylesheet" href="/notes.css" />
|
||||
<link rel="stylesheet" href="style/notes/notes.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="wrapper">
|
||||
<div th:replace="~{_header :: header(activePage=${home})}"></div>
|
||||
<div th:replace="~{_header :: header(activePage=${})}"></div>
|
||||
<div class="content container mt-4"></div>
|
||||
<div th:replace="~{_footer :: footer}"></div>
|
||||
</div>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<head>
|
||||
<div th:replace="~{/core/_metadata :: metadata}"></div>
|
||||
<title>My Skill Management System</title>
|
||||
<link rel="stylesheet" href="/skills.css" />
|
||||
<link rel="stylesheet" href="style/skills/skills.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="wrapper">
|
||||
|
|
Loading…
Reference in New Issue