14 lines
406 B
HTML
14 lines
406 B
HTML
{{- $items := . -}}
|
|
{{- if gt (len $items) 0 -}}
|
|
<ul class="keywords">
|
|
{{- range $items }}
|
|
{{- $type := printf "%T" . -}}
|
|
{{- if or (strings.HasPrefix $type "*hugolib.") (strings.HasPrefix $type "page.") }}
|
|
<li><a href="{{ .RelPermalink }}">{{ with .LinkTitle }}{{ . }}{{ else }}{{ .Title }}{{ end }}</a></li>
|
|
{{- else }}
|
|
<li>{{ . }}</li>
|
|
{{- end }}
|
|
{{- end }}
|
|
</ul>
|
|
{{- end }}
|