Thymeleaf
Thymeleaf is an actively used template created in 2011.
8Years Old | 1,020Users | 0Jobs |
- Thymeleaf ranks in the top 50% of languages
- the Thymeleaf wikipedia page
- Thymeleaf first appeared in 2011
- See also: java, xml, java-server-pages, apache-velocity, template-attribute-language
- I have 21 facts about Thymeleaf. just email me if you need more.
Example code from Wikipedia:
<table> <thead> <tr> <th th:text="#{msgs.headers.name}">Name</th> <th th:text="#{msgs.headers.price}">Price</th> </tr> </thead> <tbody> <tr th:each="prod : ${allProducts}"> <td th:text="${prod.name}">Oranges</td> <td th:text="${#numbers.formatDecimal(prod.price,1,2)}">0.99</td> </tr> </tbody> </table>Edit
Last updated February 11th, 2019