Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. <div class="row">
  2. <div th:each="photo : ${photos}" class="col-md-4">
  3. <div class="thumbnail">
  4. <img th:src="${photo.path}" style="width: 100%">
  5. <div class="caption">
  6. <p>
  7. <button th:class=".add-to-cart"
  8. th:onclick="'addPhotoToOrder(' + ${photo.id} + ')'"
  9. type="button" class="btn btn-primary" th:text="#{message.add}"></button>
  10. </p>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement