16 lines
378 B
HTML
16 lines
378 B
HTML
{{- $page := . -}}
|
|
{{- with .Params.links }}
|
|
<nav id="page-links">
|
|
{{- range . }}
|
|
{{- $text := default .name .text -}}
|
|
{{- $title := default $text .title -}}
|
|
{{- partial "render/link.html" (dict
|
|
"Destination" .url
|
|
"Title" $title
|
|
"Text" $text
|
|
"Page" $page
|
|
) -}}
|
|
{{- end }}
|
|
</nav>
|
|
{{- end }}
|