fix: add safeURL to navigation links

This commit is contained in:
recanman 2024-07-03 12:15:11 -07:00
parent ab2864a843
commit 4eea1ab1b1
3 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
{{ with .Site.Params.bottom_nav_icons }} {{ with .Site.Params.bottom_nav_icons }}
{{ range . }} {{ range . }}
<a class="icon" href="{{ .link }}" target="_blank"> <a class="icon" href="{{ .link | safeURL }}" target="_blank">
<img src="/img/{{ .icon }}" alt="{{ .icon_alt }}" title="{{ .title }}" /> <img src="/img/{{ .icon }}" alt="{{ .icon_alt }}" title="{{ .title }}" />
</a> </a>
{{ end }} {{ end }}

View file

@ -1,5 +1,5 @@
{{ with .Site.Params.nav_links }} {{ with .Site.Params.nav_links }}
{{ range . }} {{ range . }}
<a href="{{ .link }}" title="{{ .title }}">{{ .title }}</a> <a href="{{ .link | safeURL }}" title="{{ .title }}">{{ .title }}</a>
{{ end }} {{ end }}
{{ end }} {{ end }}

View file

@ -1,7 +1,7 @@
{{ with .Site.Params.right_icons }} {{ with .Site.Params.right_icons }}
{{ range . }} {{ range . }}
{{ $target := cond .external "_blank" "_self" }} {{ $target := cond .external "_blank" "_self" }}
<a class="icon" href="{{ .link }}" target="{{ $target }}"> <a class="icon" href="{{ .link | safeURL }}" target="{{ $target }}">
<img src="/img/{{ .icon }}" alt="{{ .icon_alt }}" title="{{ .title }}" /> <img src="/img/{{ .icon }}" alt="{{ .icon_alt }}" title="{{ .title }}" />
</a> </a>
{{ end }} {{ end }}