mirror of https://github.com/lxndrblz/anatole.git

Alexander Bilz
11.03.2022 887bf9d945b09e7dfc8815d67f3189ac39676bb9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{{- if (eq .Site.Params.oldContentWarning true) -}}
  {{- $ageDays := div (sub now.Unix .Date.Unix) 86400 -}}
  {{- $duration := .Site.Params.oldContentDuration -}}
 
  {{- if and (ne .Type "post") (ne .Type .Site.Params.postSectionName) -}}
    {{- $duration = 0 -}}
 
 
  {{- end -}}
 
  {{- if (isset .Params "old_content_duration") -}}
    {{- $duration = .Params.old_content_duration -}}
 
 
  {{- end -}}
 
  {{- if and (gt $ageDays $duration) (ne $duration 0) -}}
    <div class="alert">
      <div class="alert__indicator">!</div>
      {{ i18n "old_content_warning" (dict "Count" $duration) }}
    </div>
 
  {{- end -}}
 
 
{{- end -}}