index.html 467 B

12345678910111213141516
  1. <!DOCTYPE html>
  2. <html xmlns:th="http://www.thymeleaf.org" xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity3">
  3. <head>
  4. <meta charset="UTF-8"/>
  5. <title>zheng-demo</title>
  6. </head>
  7. <body>
  8. <h1 th:text="${host}">Hello World</h1>
  9. <ul th:each="user : ${users}">
  10. <li th:text="${user.id}">1</li>
  11. <li th:text="${user.age}">2</li>
  12. <li th:text="${user.name}">3</li>
  13. </ul>
  14. <img src="http://ui.zhangshuzheng.cn:1000/images/avatar.jpg"/>
  15. </body>
  16. </html>