hugo-theme-minima/layouts/partials/item.html
2022-11-08 18:07:48 +08:00

17 lines
No EOL
537 B
HTML

<div>
<div class="flex justify-between">
{{ if .Page.Params.link }}
<a class="font-bold" href="{{ .Page.Params.link }}">{{ .Title }}</a>
{{ else }}
<a class="font-bold" href="{{ .RelPermalink }}">{{ .Title }}</a>
{{ end }}
{{ if .Site.Params.displayDate }}
<div class="text-xs font-bold">{{ dateFormat .Site.Params.timeformat .Date }}</div>
{{ end }}
</div>
{{ if .Site.Params.displayDescription }}
<p class="text-sm mb-2">
{{ .Description | markdownify | safeHTML }}
</p>
{{ end }}
</div>