Fix nav urls with safeURL filter

This commit is contained in:
Luiz F. A. de Prá
2020-09-30 09:36:11 -03:00
parent 8523b3c90d
commit 5b7a49c087

View File

@@ -15,13 +15,13 @@
{{ range sort . "weight" }} {{ range sort . "weight" }}
{{ if .icon }} {{ if .icon }}
<li> <li>
<a href="{{ .url }}" aria-label="{{ .name }}" {{ if .rel }}rel="{{ .rel }}"{{ end }} {{ if .target }}target="{{ .target }}"{{ end }} {{ if .type }}type="{{ .type }}"{{ end }}> <a href="{{ .url | safeURL }}" aria-label="{{ .name }}" {{ if .rel }}rel="{{ .rel }}"{{ end }} {{ if .target }}target="{{ .target }}"{{ end }} {{ if .type }}type="{{ .type }}"{{ end }}>
<i class="{{ .icon }}" aria-hidden="true"></i> <i class="{{ .icon }}" aria-hidden="true"></i>
</a> </a>
</li> </li>
{{ else }} {{ else }}
<li> <li>
<a href="{{ .url }}" aria-label="{{ .name }}" {{ if .rel }}rel="{{ .rel }}"{{ end }} {{ if .target }}target="{{ .target }}"{{ end }}>{{ .name }}</a> <a href="{{ .url | safeURL }}" aria-label="{{ .name }}" {{ if .rel }}rel="{{ .rel }}"{{ end }} {{ if .target }}target="{{ .target }}"{{ end }}>{{ .name }}</a>
</li> </li>
{{ end }} {{ end }}
{{ end }} {{ end }}