12 lines
341 B
HTML
12 lines
341 B
HTML
{{ range . -}}
|
|
<li>
|
|
<a href="{{ .Permalink }}"
|
|
class="text-decoration-none">{{ .Title }}
|
|
{{ if .Date -}}
|
|
<small>{{ .Date.Format (i18n "dateFormat") }}</small>
|
|
{{- else if .Params.Teaser -}}<small>{{ .Params.Teaser }}</small>
|
|
{{- else -}}<small>{{ .Summary }}</small>
|
|
{{- end }}
|
|
</a>
|
|
</li>
|
|
{{- end }}
|