Advertisement
Guest User

Untitled

a guest
Oct 28th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <html xmlns:th="http://www.thymeleaf.org">
  3. <head>
  4. </head>
  5. <body>
  6.  
  7. <div id="postContainer" th:unless="${posts == null}">
  8.  
  9. <tr th:each="post : ${posts}">
  10. <a id="title" th:href="@{/specific_post(id=${post.id})}" th:text="${post.title}"></a>
  11. <td th:text="${post.creationDate}"></td>
  12. <td th:text="${post.id}"></td>
  13. </tr>
  14. </div>
  15.  
  16. </div>
  17.  
  18. </body>
  19. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement