12 lines
543 B
HTML
12 lines
543 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html xmlns:th="http://www.thymeleaf.org">
|
||
|
|
<th:block th:fragment="includes">
|
||
|
|
<meta charset="UTF-8" />
|
||
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||
|
|
<meta name="Referrer" content="origin"/>
|
||
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
|
||
|
|
<meta name="viewport" content="width=device-width,height=device-height,initial-scale=1"/>
|
||
|
|
<link th:href="@{/css/common.css}" rel="stylesheet" />
|
||
|
|
<script type="text/javascript" th:src="@{/js/common.js}"></script>
|
||
|
|
</th:block>
|
||
|
|
</html>
|