diff --git a/layouts/blog/single.html b/layouts/blog/single.html index 1819873d5e..df39421312 100644 --- a/layouts/blog/single.html +++ b/layouts/blog/single.html @@ -5,6 +5,30 @@

{{ .Params.description }}

{{ (.Params.publishdate).Format "Jan 2, 2006" }} | By {{ replace (replace .Params.attribution "(" "- ") ")" "" }}

+ {{ if .Page.Params.target_release }} + {{ $page_parts := split .Page.Params.target_release "." }} + {{ $page_version := int (index $page_parts 0) }} + {{ $page_revision := int (index $page_parts 1) }} + {{ $page_normalized_version := add (add (mul $page_version 1000000) (mul $page_revision 1000)) 0 }} + + {{ $site_parts := split .Site.Data.args.version "." }} + {{ $site_version := int (index $site_parts 0) }} + {{ $site_revision := int (index $site_parts 1) }} + {{ $site_normalized_version := add (add (mul $site_version 1000000) (mul $site_revision 1000)) 0 }} + + {{ if gt $site_normalized_version $page_normalized_version }} +
+ +
+ {{ end }} + {{ end }}
{{ .Content }}