Skip to content

Commit 8ab7702

Browse files
phasenraum2010phasenraum2010
phasenraum2010
authored and
phasenraum2010
committed
templating thymeleaf
1 parent 7d8d040 commit 8ab7702

File tree

1 file changed

+8
-2
lines changed
  • src/main/resources/templates/graph/category

1 file changed

+8
-2
lines changed

src/main/resources/templates/graph/category/all.html

+8-2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,15 @@
44
xmlns:sec="http://www.thymeleaf.org/extras/spring-security">
55
<head th:include="layoutMain :: tw-head">
66
</head>
7-
<body th:include="layoutMain :: tw-body">
7+
<body>
8+
<h1>All Categories:</h1>
9+
<hr/>
10+
<ul th:each="item : ${all}">
11+
<li th:text="${item.name}" />
12+
</ul>
13+
<!--
814
<main role="main" th:include="layoutMain :: tw-main">
915
<div class="container" th:replace="template :: tw_main_app">
10-
<!-- Example row of columns -->
1116
<div class="row">
1217
<div class="col-md-12">
1318
<h2>All Categories:</h2>
@@ -19,5 +24,6 @@ <h2>All Categories:</h2>
1924
</div>
2025
</div>
2126
</main>
27+
-->
2228
</body>
2329
</html>

0 commit comments

Comments
 (0)