mirror of
https://github.com/rottenwheel/revuoxmrtheme.git
synced 2024-11-09 12:10:04 +00:00
Merge pull request #2 from recanman/main
fix: add safeURL to navigation links
This commit is contained in:
commit
7c6001c6ff
3 changed files with 3 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
|||
{{ with .Site.Params.bottom_nav_icons }}
|
||||
{{ 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 }}" />
|
||||
</a>
|
||||
{{ end }}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{{ with .Site.Params.nav_links }}
|
||||
{{ range . }}
|
||||
<a href="{{ .link }}" title="{{ .title }}">{{ .title }}</a>
|
||||
<a href="{{ .link | safeURL }}" title="{{ .title }}">{{ .title }}</a>
|
||||
{{ end }}
|
||||
{{ end }}
|
|
@ -1,7 +1,7 @@
|
|||
{{ with .Site.Params.right_icons }}
|
||||
{{ range . }}
|
||||
{{ $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 }}" />
|
||||
</a>
|
||||
{{ end }}
|
||||
|
|
Loading…
Reference in a new issue