Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created September 2, 2019 22:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/9d61ff08a07f82a1af0a73cfdb4b15ce to your computer and use it in GitHub Desktop.
Save parzibyte/9d61ff08a07f82a1af0a73cfdb4b15ce to your computer and use it in GitHub Desktop.
<table>
<thead>
<tr>
<th>Nombre</th>
<th>Precio</th>
</tr>
</thead>
<tbody>
<tr th:each="producto : ${productos}">
<td th:text="${producto.nombre}"></td>
<td th:text="${producto.precio}"></td>
</tr>
</tbody>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment