page-approved.html 944 B

12345678910111213141516171819202122232425262728293031
  1. <!DOCTYPE html>
  2. <html xmlns:th="http://www.thymeleaf.org">
  3. <head>
  4. <title>Page Approved</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  6. </head>
  7. <body>
  8. <p th:inline="text">
  9. Hi [[${username}]].
  10. </p>
  11. <p th:if="${!amendment}">
  12. Congratulations! Your store page <b th:text="${page.details.title}"></b> has been approved! Your page is now live on the asset store and visible to
  13. the public! Click the link below to view your asset.
  14. </p>
  15. <p th:if="${amendment}">
  16. Congratulations! Your changes to your store page <b th:text="${page.details.title}"></b> are now live on the asset store! Thank you for updating
  17. your software! Click the link below to view your updated software.
  18. </p>
  19. <p>
  20. <a th:href="${websiteFullUrl} + '/' + ${page.id}" th:text="${websiteFullUrl} + '/' + ${page.id}"></a>
  21. </p>
  22. <p>
  23. Regards, <br />
  24. <span th:text="${siteName}"></span>
  25. </p>
  26. </body>
  27. </html>