gui: Add metadata template
parent
d429840f5a
commit
c0e0e0b4ee
|
@ -9,5 +9,4 @@ public class BackendApplication {
|
|||
public static void main(String[] args) {
|
||||
SpringApplication.run(BackendApplication.class, args);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -0,0 +1,7 @@
|
|||
<th:block th:fragment="metadata">
|
||||
<meta name="keywords" content="'maradona, inter, skill'" />
|
||||
<meta name="description" content="Maradona Beschreibung" />
|
||||
<meta name="author" content="Maradona" />
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
</th:block>
|
|
@ -1,7 +1,8 @@
|
|||
<!DOCTYPE html>
|
||||
<html xmlns:th="http://www.thymeleaf.org">
|
||||
<head>
|
||||
<title>My Website</title>
|
||||
<div th:replace="~{_metadata :: metadata}"></div>
|
||||
<title>My Skill Management System</title>
|
||||
</head>
|
||||
<body>
|
||||
<div th:replace="~{_header :: header(activePage=${home})}"></div>
|
||||
|
|
Loading…
Reference in New Issue