mirror of
https://github.com/Brandon-Rozek/website-theme.git
synced 2024-11-09 10:50:34 -05:00
21 lines
No EOL
924 B
HTML
21 lines
No EOL
924 B
HTML
{{ if and (not .Date.IsZero) (not .Params.hideDate) (not .Site.Params.hideDate) }}
|
|
{{ $publishString := .Scratch.Get "beforeDateString" }}
|
|
{{ $singlePageDateFormat := .Site.Params.singlePageDateFormat | default "January 2, 2006"}}
|
|
{{ $pubdate := .Date.Format $singlePageDateFormat }}
|
|
|
|
<p class="date">
|
|
<i class="fas fa-calendar"></i>
|
|
{{ $publishString }}
|
|
<time class="dt-published" datetime='{{ .Date.Format "2006-01-02T15:04:05Z0700" }}'>{{ $pubdate }}</time>
|
|
</p>
|
|
|
|
{{- if and (not (.Scratch.Get "noDateUpdate")) .Lastmod }}
|
|
{{- $lastmod := .Lastmod.Format $singlePageDateFormat }}
|
|
{{- if ne $lastmod $pubdate }}
|
|
<p class="date-updated">
|
|
Updated on
|
|
<time class='dt-updated' datetime='{{ .Lastmod.Format "2006-01-02T15:04:05Z0700" }}'>{{ $lastmod }}</time>
|
|
</p>
|
|
{{- end }}
|
|
{{ end }}
|
|
{{ end }} |