7 lines
No EOL
232 B
HTML
7 lines
No EOL
232 B
HTML
{{ with .Site.Params.nav_links }}
|
|
{{ range . }}
|
|
<!-- safeURL only works when the link is stored in a variable -->
|
|
{{ $link := .link }}
|
|
<a href="{{ $link | safeURL }}" title="{{ .title }}">{{ .title }}</a>
|
|
{{ end }}
|
|
{{ end }} |