hugo-theme-minima/layouts/partials/list.html

10 lines
369 B
HTML
Raw Normal View History

<div class="flex justify-between sm:flex-col my-3 sm:mb-4 sm:mt-3">
2022-01-30 08:12:29 +01:00
{{ if .Page.Params.link }}
<a class="" href="{{ .Page.Params.link }}">{{ .Title }}</a>
{{ else }}
2021-11-08 17:46:22 +01:00
<a class="" href="{{ .RelPermalink }}">{{ .Title }}</a>
2022-01-30 08:12:29 +01:00
{{ end }}
2021-10-28 18:03:48 +02:00
{{ if .Site.Params.displayDate }}
<div class="sm:mt-1 sm:text-xs">{{ dateFormat .Site.Params.timeformat .Date }}</div>
2021-10-28 18:01:17 +02:00
{{ end }}
2021-09-09 09:56:22 +02:00
</div>