diff options
author | Vitaly Takmazov | 2021-08-26 19:47:47 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2021-08-26 19:47:47 +0300 |
commit | 41ed7f3739d89ac1f5f77c36aaca36ea4c261601 (patch) | |
tree | 8aca7243f4b02a02d524b4d5bd9606d413dd6386 /src/main | |
parent | 06d89c8784dd9e8745837cbd3295e3b25ad6b43f (diff) |
Layout: fix tags spacing
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/resources/templates/views/macros/tags.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/resources/templates/views/macros/tags.html b/src/main/resources/templates/views/macros/tags.html index 459cedd6..36b05af8 100644 --- a/src/main/resources/templates/views/macros/tags.html +++ b/src/main/resources/templates/views/macros/tags.html @@ -1,2 +1,2 @@ -{% macro tags(uname="", tagsList) %}{% for tag in tagsList %}<a class="hashtag" href="/{{ uname }}/?tag={{ tag | urlencode }}">{{ tag }}</a>{% endfor %}{% endmacro %} -{% macro allTags(baseUri, tagsList) %}{% for tag in tagsList %}<a class="hashtag" href="{{ baseUri }}tag/{{ tag | urlencode }}" rel="tag">#{{ tag }}</a>{% endfor %}{% endmacro %}
\ No newline at end of file +{% macro tags(uname="", tagsList) %}{% for tag in tagsList %}<a class="hashtag" href="/{{ uname }}/?tag={{ tag | urlencode }}">{{ tag }}</a> {% endfor %}{% endmacro %} +{% macro allTags(baseUri, tagsList) %}{% for tag in tagsList %}<a class="hashtag" href="{{ baseUri }}tag/{{ tag | urlencode }}" rel="tag">#{{ tag }}</a> {% endfor %}{% endmacro %}
\ No newline at end of file |