12 lines
372 B
HTML
12 lines
372 B
HTML
<!DOCTYPE HTML>
|
|
<html xmlns:th="http://www.thymeleaf.org">
|
|
<head>
|
|
<title>SpringBoot模版渲染</title>
|
|
<script type="text/javascript" th:src="@{/js/main.js}"></script>
|
|
<link rel="icon" type="image/x-icon" href="/images/mldn.ico"/>
|
|
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/>
|
|
</head>
|
|
<body>
|
|
<img th:src="${image}"/>
|
|
</body>
|
|
</html> |