We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d8d040 commit 8ab7702Copy full SHA for 8ab7702
src/main/resources/templates/graph/category/all.html
@@ -4,10 +4,15 @@
4
xmlns:sec="http://www.thymeleaf.org/extras/spring-security">
5
<head th:include="layoutMain :: tw-head">
6
</head>
7
-<body th:include="layoutMain :: tw-body">
+<body>
8
+<h1>All Categories:</h1>
9
+<hr/>
10
+<ul th:each="item : ${all}">
11
+ <li th:text="${item.name}" />
12
+</ul>
13
+<!--
14
<main role="main" th:include="layoutMain :: tw-main">
15
<div class="container" th:replace="template :: tw_main_app">
- <!-- Example row of columns -->
16
<div class="row">
17
<div class="col-md-12">
18
<h2>All Categories:</h2>
@@ -19,5 +24,6 @@ <h2>All Categories:</h2>
19
24
</div>
20
25
21
26
</main>
27
+ -->
22
28
</body>
23
29
</html>
0 commit comments