neff-steindesign.de/themes/neff/layouts/_default/li.html

22 lines
874 B
HTML
Executable File

{{- $currentPage := . -}}
<li class="padding">
<div class="flex column">
<div>
{{- range $.Resources.ByType "image" -}}
{{- if .Params.featured -}}
{{- $orig := . -}}
{{ partial "figure.html" (dict "ctx" $currentPage "image" . "lightbox" false "class" "left round small")}}
{{- end -}}
{{- end -}}
<a href="{{ .RelPermalink }}"><h4>{{ .Title }}</h4></a>
{{ .Summary }}
{{- if .Truncated -}}
&nbsp;<a href="{{ .RelPermalink }}">{{ i18n "read-more" }}&#8230;</a>
{{- end -}}
<footer>
<time class="list-item-lastmod" datetime='{{ .Lastmod.Format "2006-01-02T15:04-07:00" }}'>{{ .Lastmod.Format "02.01.2006 15:04" }}</time>
</footer>
</div>
</div>
</li>