hugo-theme-cybercards/layouts/partials/list-item.html

25 lines
707 B
HTML

{{ range . -}}
<li>
{{- $page := . -}}
{{- $url := "" -}}
{{- $anchor := "" -}}
{{- $title := "" -}}
{{- if reflect.IsMap . -}}
{{- $anchor = .anchor -}}
{{- $page = .page -}}
{{- $title = .title -}}
{{- end -}}
{{- if ne $anchor "" -}}
{{- $url = printf "%s#%v" $page.Permalink $anchor -}}
{{- else -}}
{{- $url = $page.Permalink -}}
{{- end -}}
<a href="{{ $url }}">{{ or $title $page.Title }}&nbsp;&nbsp;
{{ if $page.Date -}}
<small>{{ $page.Date.Format (i18n "dateFormat") }}</small>
{{- else if $page.Params.Teaser -}}<small>{{ $page.Params.Teaser }}</small>
{{- else -}}<small>{{ $page.Summary }}</small>
{{- end }}
</a>
</li>
{{- end }}