This repository has been archived on 2020-08-02. You can view files and clone it, but cannot push or open issues or pull requests.
e-commerce/prototype/src/main/resources/templates/fragments/shop.html

18 lines
424 B
HTML
Raw Normal View History

2020-01-25 16:41:11 +01:00
<!DOCTYPE html>
<html lang="de" dir="ltr" xmlns:th="http://www.thymeleaf.org">
<head>
2020-04-27 09:48:24 +02:00
<meta charset="UTF-8">
<title>e-commerce</title>
2020-01-25 16:41:11 +01:00
</head>
<body>
2020-05-14 15:43:16 +02:00
<nav th:fragment="sidebar (categories)">
2020-04-27 09:48:24 +02:00
<h1>Kategorien</h1>
<ul class="secondary">
2020-05-14 15:43:16 +02:00
<li th:each="category: ${categories}"><a th:href="@{/shop/search(category=${category.name})}" th:text="${category.name}"></a></li>
2020-04-27 09:48:24 +02:00
</ul>
</nav>
2020-01-25 16:41:11 +01:00
</body>
</html>