blog/themes/hello-friend/layouts/partials/lastmod.html
Mathieu Broillet cda0c8f53d
Some checks reported errors
continuous-integration/drone/push Build was killed
continuous-integration/drone Build encountered an error
init hugo
2023-06-11 11:34:59 +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 }}