I've tried to load category items.
In the category.html page, I changed the code loading products with this:
Code: Select all
<ul id="categories" class="group">
<li th:each="category : ${categories}" th:object="${category}" th:include="catalog/partials/categoryListItem" class="product_container"></li>
</ul>
Then I created a categoryListItem.html page with this conten:
Code: Select all
<div class="content">
<div class="title" th:text="*{name}"></div>
<p th:text="*{id}"></p>
<p th:utext="*{description}"></p>
</div>
But when I run, nothing displayed. Could you explain?
Thanks!