index.html 459 B

12345678910111213141516171819
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns:th="http://www.thymeleaf.org">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. </head>
  7. <body>
  8. <h1>shouye </h1>
  9. <h1>开始 展示 数据2222</h1>
  10. <!--<span th:each="item:${list}"> ${item.title}</span>-->
  11. <p th:text="${name}">111</p>
  12. <a href="hello.html">跳转到hello</a>
  13. <div th:each="item : ${list}">
  14. <h1 th:text="${{item.type}}"></h1>
  15. <p><a th:text="${{item.title}}"></a></p>
  16. </div>
  17. </body>
  18. </html>