2024-07-31 21:52:45 -04:00
|
|
|
{{ if .Date }}
|
2024-05-23 21:08:04 -04:00
|
|
|
{{ $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 }}
|
2024-05-23 21:08:04 -04:00
|
|
|
{{ partial "social.html" . }} {{ with .Params.tags }}
|
2024-05-22 14:22:07 -04:00
|
|
|
<i data-feather="tag"></i>
|
2024-05-23 21:08:04 -04:00
|
|
|
{{ 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 }}
|