Files
mall/mall-demo/src/main/resources/templates/demo.html
2018-04-13 13:50:33 +08:00

17 lines
397 B
HTML

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8"/>
<title>Demo Brand List</title>
<link rel="stylesheet" th:href="@{/style.css}"/>
</head>
<body>
<h2>all brand list</h2>
<ul>
<li th:each="brand : ${brandList}">
<span th:text="${brand.id}"></span>
<span th:text="${brand.name}"></span>
</li>
</ul>
</body>
</html>