fix: get safeURL to work

This commit is contained in:
recanman 2024-07-03 15:02:11 -07:00
parent 8726659263
commit 1131349487
3 changed files with 10 additions and 3 deletions

View file

@ -1,6 +1,8 @@
{{ with .Site.Params.bottom_nav_icons }} {{ with .Site.Params.bottom_nav_icons }}
{{ range . }} {{ range . }}
<a class="icon" href="{{ .link | safeURL }}" target="_blank"> <!-- safeURL only works when the link is stored in a variable -->
{{ $link := .link }}
<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,7 @@
{{ with .Site.Params.nav_links }} {{ with .Site.Params.nav_links }}
{{ range . }} {{ range . }}
<a href="{{ .link | safeURL }}" title="{{ .title }}">{{ .title }}</a> <!-- safeURL only works when the link is stored in a variable -->
{{ $link := .link }}
<a href="{{ $link | safeURL }}" title="{{ .title }}">{{ .title }}</a>
{{ end }} {{ end }}
{{ end }} {{ end }}

View file

@ -1,7 +1,10 @@
{{ 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 | safeURL }}" target="{{ $target }}">
<!-- safeURL only works when the link is stored in a variable -->
{{ $link := .link }}
<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 }}