I can not find syntax for building simple for-each-loop in Thymeleaf template.
I'm not satisfied with just th:each="" attribute, because it copies the tag in which it's located.
What I'm looking for is something like:
<th:foreach th:each="...">
...block to be repeated...
</th>
what is an analogue of <c:forEach items="..." var="..."> or <t:loop source="..." value="..."> in Tapestry. Is anything similar for that?