17 lines
397 B
HTML
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> |