blog/static/themes/hello-friend/layouts/partials/lastmod.html
Mathieu Broillet 30a29a3a11
All checks were successful
continuous-integration/drone/push Build is passing
started migration from joplin
2023-06-11 16:09:07 +02:00

11 lines
289 B
HTML

{{ $hourInSec := 3600 }}
{{ if gt .Lastmod (add (time .Date).Unix $hourInSec) }}
{{ with .Lastmod }}
<span class="post-moddate">
({{ $.Site.Params.LastModDisplay }}
{{ .Format ($.Site.Params.DateFormatSingle | default "2006-01-02") }})
</span>
{{ end }}
{{ end }}