aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/templates/views/macros/tags.html
blob: 7d8a5fe1b5966c5e3ee4646b7cbd2212ca1c1954 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{% macro tags(uname="", tagsList) %}
{% for tag in tagsList %}
<a href="/{{ uname }}/?tag=*{{ tag | urlencode }}">{{ tag }}</a>
{% endfor %}
{% endmacro %}

{% macro allTags(baseUri, tagsList) %}
{% for tag in tagsList %}
<a href="{{ baseUri }}tag/*{{ tag | urlencode }}">#{{ tag }}</a>
{% endfor %}
{% endmacro %}