aboutsummaryrefslogtreecommitdiff
path: root/themes/even/layouts/partials/post/outdated-info-warning.html
diff options
context:
space:
mode:
authorJulio Capote <jcapote@gmail.com>2023-01-24 03:20:47 +0000
committerJulio Capote <jcapote@gmail.com>2023-01-24 03:20:47 +0000
commitf24f2d15275961f1c0144e68fde75a60aeaaa165 (patch)
tree38be1626f3ade436fbd17eadb2753fa2f0effb37 /themes/even/layouts/partials/post/outdated-info-warning.html
parentbf04383b34c4a4fdfe239de2805a30a051921002 (diff)
downloadcapotej.com-f24f2d15275961f1c0144e68fde75a60aeaaa165.tar.gz
move to bear theme
Diffstat (limited to 'themes/even/layouts/partials/post/outdated-info-warning.html')
-rw-r--r--themes/even/layouts/partials/post/outdated-info-warning.html28
1 files changed, 0 insertions, 28 deletions
diff --git a/themes/even/layouts/partials/post/outdated-info-warning.html b/themes/even/layouts/partials/post/outdated-info-warning.html
deleted file mode 100644
index 3736c13..0000000
--- a/themes/even/layouts/partials/post/outdated-info-warning.html
+++ /dev/null
@@ -1,28 +0,0 @@
-{{- if or .Params.enableOutdatedInfoWarning (and .Site.Params.outdatedInfoWarning.enable (ne .Params.enableOutdatedInfoWarning false)) }}
- {{- $daysAgo := div (sub now.Unix .Lastmod.Unix) 86400 }}
- {{- $hintThreshold := .Site.Params.outdatedInfoWarning.hint | default 30 }}
- {{- $warnThreshold := .Site.Params.outdatedInfoWarning.warn | default 180 }}
-
- {{- $updateTime := .Lastmod }}
- {{- if .GitInfo }}
- {{- if lt .GitInfo.AuthorDate.Unix .Lastmod.Unix }}
- {{- $updateTime := .GitInfo.AuthorDate }}
- {{- end }}
- {{- end -}}
-
- {{- if gt $daysAgo $hintThreshold }}
- <div class="post-outdated">
- {{- if gt $daysAgo $warnThreshold }}
- <div class="warn">
- {{- else }}
- <div class="hint">
- {{- end }}
- <p>{{ T "outdatedInfoWarningBefore" -}}
- <span class="timeago" datetime="{{ dateFormat "2006-01-02T15:04:05" $updateTime }}" title="{{ dateFormat "January 2, 2006" $updateTime }}">
- {{- dateFormat "January 2, 2006" $updateTime -}}
- </span>{{ T "outdatedInfoWarningAfter" -}}
- </p>
- </div>
- </div>
- {{- end -}}
-{{- end -}}