commit
5660276d92
3 changed files with 10 additions and 3 deletions
|
@ -1,6 +1,8 @@
|
|||
{{ with .Site.Params.bottom_nav_icons }}
|
||||
{{ 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 }}" />
|
||||
</a>
|
||||
{{ end }}
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
{{ with .Site.Params.nav_links }}
|
||||
{{ 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 }}
|
|
@ -1,7 +1,10 @@
|
|||
{{ with .Site.Params.right_icons }}
|
||||
{{ range . }}
|
||||
{{ $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 }}" />
|
||||
</a>
|
||||
{{ end }}
|
||||
|
|
Loading…
Reference in a new issue