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

12 lines
341 B
HTML

{{ range . -}}
<li>
<a href="{{ .Permalink }}"
class="text-decoration-none">{{ .Title }}&nbsp;&nbsp;
{{ if .Date -}}
<small>{{ .Date.Format (i18n "dateFormat") }}</small>
{{- else if .Params.Teaser -}}<small>{{ .Params.Teaser }}</small>
{{- else -}}<small>{{ .Summary }}</small>
{{- end }}
</a>
</li>
{{- end }}