gallowelds.com/themes/gallo/layouts/partials/metadata.html

12 lines
514 B
HTML
Raw Normal View History

2024-07-31 21:52:45 -04:00
{{ if .Date }}
{{ $dateTime := .PublishDate.Format "2006-01-02" }} {{ $dateFormat :=
.Site.Params.dateFormat | default "Jan 2, 2006" }}
<time class="text-xs text-slate-400" datetime="{{ $dateTime }}"
>Last Updated: {{ .PublishDate.Format $dateFormat }}</time
>
2024-07-31 21:52:45 -04:00
{{ end }}
{{ partial "social.html" . }} {{ with .Params.tags }}
2024-05-22 14:22:07 -04:00
<i data-feather="tag"></i>
{{ range . }} {{ $href := print (absURL "tags/") (urlize .) }}
2024-05-22 14:22:07 -04:00
<a class="btn btn-sm btn-outline-dark tag-btn" href="{{ $href }}">{{ . }}</a>
2024-07-31 21:52:45 -04:00
{{ end }} {{ end }}