1

add href to group title, improve display of several groups

This commit is contained in:
kasch309
2020-03-12 16:06:36 +01:00
parent ac4fc24431
commit 40c04f5bc4

View File

@ -30,9 +30,12 @@
<form action="/" method="get"> <form action="/" method="get">
<div th:each="gruppe: ${gruppen}"> <div th:each="gruppe: ${gruppen}">
<div style="border: 10px solid aliceblue; background: aliceblue"> <div style="border: 10px solid aliceblue; background: aliceblue">
<h4 th:href="url" style="color: dodgerblue; font-weight: bold" th:text="${gruppe.getTitle()}"></h4> <h3>
<a href="url" style="color: dodgerblue; font-weight: bold" th:text="${gruppe.getTitle()}"></a>
</h3>
<p th:text="${gruppe.getDescription()}"></p> <p th:text="${gruppe.getDescription()}"></p>
</div> </div>
<br>
</div> </div>
</form> </form>
</div> </div>