模板文件

作者: 米大胖呀 | 来源:发表于2019-07-09 15:20 被阅读3次
<!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>

相关文章

网友评论

    本文标题:模板文件

    本文链接:https://www.haomeiwen.com/subject/lyixkctx.html