make simple test landing pages
- add HomeController - add index.html - add layout.html - add management.js - add management.css - add css js and html to .editorconfig
This commit is contained in:
12
src/main/resources/templates/layout.html
Normal file
12
src/main/resources/templates/layout.html
Normal file
@@ -0,0 +1,12 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="" xmlns:th="http://www.thymeleaf.org">
|
||||
<head th:fragment="documentHead">
|
||||
<meta charset="UTF-8">
|
||||
<link th:href="@{/css/management.css}" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<div th:fragment="script">
|
||||
<script th:src="@{/js/management.js}"></script>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user