diff options
author | Mantas Vilčinskas <hi@mnts.lt> | 2021-02-24 16:29:44 +0200 |
---|---|---|
committer | Mantas Vilčinskas <hi@mnts.lt> | 2021-02-24 16:29:44 +0200 |
commit | 548fcb9e38409902e12d117c745297e7637a7e67 (patch) | |
tree | e9a96ab63d9b41ac1c469587e5b6687909761911 /layouts/issues/single.html | |
parent | 96477340dd7d7127ce5a6190e78974ad7a895bea (diff) |
API updates, lastmod, NCMS/default config changes, version to 0.80
Diffstat (limited to 'layouts/issues/single.html')
-rw-r--r-- | layouts/issues/single.html | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/layouts/issues/single.html b/layouts/issues/single.html index 5761477..402c794 100644 --- a/layouts/issues/single.html +++ b/layouts/issues/single.html @@ -13,9 +13,24 @@ </div> <div class="contain"> - {{ .Render "issue" }} + {{ .Render "issue" }} </div> + + {{ if .Site.Params.enableLastMod }} + <div class="contain center"> + <p>{{ T "lastChecked" }}: + {{ if .Site.Params.dateFormat }} + {{ .Lastmod.UTC.Format .Site.Params.dateFormat }} + {{ else }} + {{ .Lastmod.Format "January 2, 2006 at 3:04 PM" }} + {{ end }} + </p> + </div> + {{ end }} + + + {{ partial "js" . }} {{ partial "footer" . }} |