Thymeleaf
Thymeleaf is an HTML template engine, which provides full Spring support.
<h3>Designate your wrap:<h3>
<div th:each="ingredient: ${wrap}">
<input name="ingredients" type="checkbox"
th:value="${ingredient.id}" />
<span th:text="${ingredient.name}">ING</span>
<br/>
</div>
Operators
@{}
produces a context-relative path to the/static/
folder
Simple Tags
th:src="@{images/taco.png}"
retrieves an image with relative path from/static/
th:href="@{/styles.css}"
retrieve a css file