gui: Fix header

pull/1/head
Lunix-420 2024-11-05 11:40:21 +01:00
parent 282cfca5c6
commit 5fb0b97fdd
2 changed files with 3 additions and 3 deletions

Binary file not shown.

View File

@ -1,15 +1,15 @@
<!DOCTYPE html> <!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org"> <html xmlns:th="http://www.thymeleaf.org">
<head> <head>
<div th:replace="~{_metadata :: metadata}"></div> <div th:replace="~{/core/_metadata :: metadata}"></div>
<title>My Skill Management System</title> <title>My Skill Management System</title>
<link rel="stylesheet" href="style/notes/notes.css" /> <link rel="stylesheet" href="style/notes/notes.css" />
</head> </head>
<body> <body>
<div class="wrapper"> <div class="wrapper">
<div th:replace="~{_header :: header(activePage=${})}"></div> <div th:replace="~{/core/_header :: header(activePage=${notes})}"></div>
<div class="content container mt-4"></div> <div class="content container mt-4"></div>
<div th:replace="~{_footer :: footer}"></div> <div th:replace="~{/core/_footer :: footer}"></div>
</div> </div>
</body> </body>
</html> </html>