1
Fork 0

Add titles to tags

This commit is contained in:
Jake Howard 2021-12-27 10:40:41 +00:00
parent 8e21f2ccef
commit f026a4b21b
Signed by: jake
GPG key ID: 57AFB45680EDD477

View file

@ -9,10 +9,10 @@
{{ end }} {{ end }}
{{ if .Params.tags }} {{ if .Params.tags }}
<a href="{{ ref . "/tags" }}" class="no-color-change mr-1"> <a href="{{ ref . "/tags" }}" class="no-color-change mr-1" title="Tags">
<i class="fas fa-tags small"></i> <i class="fas fa-tags small"></i>
</a> </a>
{{ range $i, $e := .Params.tags }} {{ range $i, $e := .Params.tags }}
<a href="/tags/{{ urlize . }}" class="mr-1">#{{ . }}</a> <a href="/tags/{{ urlize . }}" class="mr-1" title="{{ . }}">#{{ . }}</a>
{{ end }} {{ end }}
{{ end }} {{ end }}