hugo-typo/layouts/partials/post-entry.html
2024-11-18 20:10:31 +02:00

21 lines
No EOL
490 B
HTML

<div class="post-line">
{{ $dateFormat := "2 Jan 2006"}}
{{ with .Site.Params.listDateFormat }}
{{ $dateFormat = .}}
{{ end }}
<p class="line-date">{{ .Date | time.Format $dateFormat }} </p>
<div>
<p class="line-title">
<a href="{{ .RelPermalink }}">
{{ .Title }}
</a>
</p>
{{ if .Site.Params.listSummaries }}
<p class="line-summary"> {{ .Summary }} </p>
{{ end }}
</div>
</div>