diff --git a/i18n/en.toml b/i18n/en.toml index 704fa79..958a9c1 100644 --- a/i18n/en.toml +++ b/i18n/en.toml @@ -32,4 +32,7 @@ other = "Search Results" other = "Query is too short" [type_to_search] -other = "Type to search" \ No newline at end of file +other = "Type to search" + +[old_content] +other = "What you're about to read hasn't been updated in more than a year. The information may be out of date. Drop a comment below if you find something that needs updating." \ No newline at end of file diff --git a/layouts/_default/single.html b/layouts/_default/single.html index e174b3f..795cb95 100644 --- a/layouts/_default/single.html +++ b/layouts/_default/single.html @@ -1,6 +1,7 @@ {{- define "main" }} {{- $s := .Site.Params }} {{- $p := .Params }} +{{- $ageDays := div (sub now.Unix .Date.Unix) 86400 }} {{- $scratch := newScratch }} {{- if isset $p "image" }} {{- $scratch.Set "image" $p.image }} @@ -14,6 +15,14 @@ {{- $t := .Title }}

{{ $t }}

{{- partial "post-meta" . }} + {{ with .Param "lastmod" }} + {{ $ageDays = div (sub now.Unix .Unix) 86400 }} + {{ end }} + {{ if gt $ageDays 365 }} +
Technology keeps moving but this post has not.
+ {{ T "old_content" }} +
+ {{ end }} {{- partial "image-feature" . }} {{ if and (gt .WordCount 400 ) (gt (len .TableOfContents) 180) ($s.toc) }}