Add trailing url to tag

This commit is contained in:
Zachary Betz 2019-03-05 12:19:53 -06:00
parent 9502715524
commit 67ba008385
1 changed files with 2 additions and 1 deletions

View File

@ -19,7 +19,8 @@
<svg class="tag-icon" aria-hidden="true" viewBox="0 0 177.16535 177.16535" focusable="false"> <svg class="tag-icon" aria-hidden="true" viewBox="0 0 177.16535 177.16535" focusable="false">
<use xlink:href="#tag"></use> <use xlink:href="#tag"></use>
</svg> </svg>
<a href="{{ "tags/" | absLangURL }}{{ . | urlize }}">{{ . }}</a> {{ $href := print ("tags/" | absLangURL) (. | urlize) "/" }}
<a href="{{ $href }}">{{ . }}</a>
</li> </li>
{{ end }} {{ end }}
</ul> </ul>