blob: 8fde6f6d5673aa557bc3f4ee95dacdd23d430c56 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{{- if or site.Params.footer .Params.editor }}
<div class="sidebar-item">
<p>
{{- with site.Params.footer -}}
{{- $footerText := replace . "{year}" now.Year -}}
{{- $footerText | safeHTML -}}
{{- end -}}
</p>
{{- with .Params.editor }}
<p>
{{ i18n "edited_by" . }},
{{- if not $.Params.Lastmod.IsZero -}}
{{- $.Params.Lastmod.Format "2006" -}}
{{- else -}}
{{- now.Format "2006" -}}
{{- end }}.
</p>
{{- end }}
</div>
{{ end }}
|