diff options
Diffstat (limited to 'juick-spring-www/src/main/webapp/WEB-INF/templates/views/partial')
-rw-r--r-- | juick-spring-www/src/main/webapp/WEB-INF/templates/views/partial/tags.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/juick-spring-www/src/main/webapp/WEB-INF/templates/views/partial/tags.html b/juick-spring-www/src/main/webapp/WEB-INF/templates/views/partial/tags.html index 4d05b7fb..28ccadea 100644 --- a/juick-spring-www/src/main/webapp/WEB-INF/templates/views/partial/tags.html +++ b/juick-spring-www/src/main/webapp/WEB-INF/templates/views/partial/tags.html @@ -1,3 +1,3 @@ -{% for tag in tags %} - <a href="/tag/{{ tag | urlencode }}" title="{{ tag }}">{{ tag }}</a> -{% endfor %}
\ No newline at end of file +<th:block th:each="tag:${tags}"> + <a th:href="|/tag/${tag}|" th:title="${tag}" th:text="${tag}">Tag</a> +</th:block>
\ No newline at end of file |