Skip to content
Snippets Groups Projects
Commit 97a1c7ad authored by Connor Brock's avatar Connor Brock
Browse files

Working thymeleaf list, removed the fragment for now and just iterated through...

Working thymeleaf list, removed the fragment for now and just iterated through the Java object List. Displays as intended.
parent e9a4a6d9
No related branches found
No related tags found
1 merge request!18Resolve "As a child, I want an interesting and exciting story based trail with obvious landmarks, so I can follow the trail with ease."
......@@ -21,8 +21,9 @@
</div>
<div class="centre">
<ul>
<li th:insert="fragments/landmarkFrag.html :: landmarkList"></li>
<ul th:each="item : ${landmarksList}">
<p th:text="${item.landmarkName}"></p>
<p th:text="${item.landmarkDescription}"></p>
</ul>
</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment