12345678910111213141516171819 |
- <!DOCTYPE html>
- <html xmlns="http://www.w3.org/1999/xhtml"
- xmlns:th="http://www.thymeleaf.org">
- <head th:replace="common::header(~{::title},~{::link})">
- <title>个人中心首页</title>
- <link th:href="${staticHost+'/dll/dll.css'}" rel="stylesheet">
- <link th:href="${staticHost+'/user/index.css'}" rel="stylesheet">
- </head>
- <body>
- <div id="root"></div>
- <div th:replace="common::footer(~{::script})">
- <script type="text/javascript" th:src="${staticHost+'/vendors.js'}"></script>
- <script type="text/javascript" th:src="${staticHost+'/dll/dll.js'}"></script>
- <script type="text/javascript" th:src="${staticHost+'/user/index.js'}"></script>
- </div>
- </body>
- </html>
|