<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<style type="text/css">
table.gridtable {
font-family: verdana,arial,sans-serif;
font-size:11px;
color:#333333;
border-width: 1px;
border-color: #666666;
border-collapse: collapse;
}
table.gridtable th {
border-width: 1px;
padding: 8px;
border-style: solid;
border-color: #666666;
background-color: #dedede;
}
table.gridtable td {
border-width: 1px;
padding: 8px;
border-style: solid;
border-color: #666666;
background-color: #ffffff;
}
</style>
<body>
<h3 th:text="'Hi ' + ${userName} + ', welcome to the email service!'"></h3>
<div >
<table class="gridtable">
<tr>
<th>文件名称</th>
<th>文件目录</th>
<th>文件类型</th>
<th>下载地址</th>
</tr>
<tr th:each="info : ${infos}">
<td th:text="${info.name}"></td>
<td th:text="${info.directory}"></td>
<td th:text="${info.type}"></td>
<td th:text="${info.url}"></td>
</tr>
</table>
</div>
</body>
</html>
网友评论