blob: 440f64cae5f92484eff5a9f9b4961a138d2ec2ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<html xmlns:th="http://www.thymeleaf.org">
<body>
<p> Uploaded Widgets: </p>
<div>
<ul>
<li th:each="file : ${files}">
<a th:href="${file}" th:text="${file}" />
</li>
</ul>
</div>
</body>
</html>
|