2024-02-29 16:03:59 +01:00
{{- $LastModifierDisplayName := "" }}
{{- $LastModifierEmail := "" }}
{{- $Date := "" }}
2025-02-17 20:51:20 +01:00
{{- $dateFormat := site.Params.dateFormat | default ":date_medium" }}
2024-02-29 16:03:59 +01:00
{{- with .GitInfo }}
2025-02-17 20:51:20 +01:00
{{- with and (not site.Params.hideAuthorName) .AuthorName }}
2024-02-29 16:03:59 +01:00
{{- $LastModifierDisplayName = . }}
{{- end }}
2025-02-17 20:51:20 +01:00
{{- with and (not site.Params.hideAuthorEmail) .AuthorEmail }}
2024-02-29 16:03:59 +01:00
{{- $LastModifierEmail = . }}
{{- end }}
2025-02-17 20:51:20 +01:00
{{- with and (not site.Params.hideAuthorDate) .AuthorDate }}
{{- $Date = . | time.Format $dateFormat }}
2024-02-29 16:03:59 +01:00
{{- end }}
{{- else }}
2025-02-17 20:51:20 +01:00
{{- with and (not site.Params.hideAuthorName) .Params.LastModifierDisplayName }}
2024-02-29 16:03:59 +01:00
{{- $LastModifierDisplayName = . }}
{{- end }}
2025-02-17 20:51:20 +01:00
{{- with and (not site.Params.hideAuthorEmail) .Params.LastModifierEmail }}
2024-02-29 16:03:59 +01:00
{{- $LastModifierEmail = . }}
{{- end }}
2025-02-17 20:51:20 +01:00
{{- with and (not site.Params.hideAuthorDate) .Date }}
{{- $Date = . | time.Format $dateFormat }}
2024-02-29 16:03:59 +01:00
{{- end }}
{{- end }}
{{- if $LastModifierDisplayName }}
2024-03-18 17:24:06 +01:00
< i class = 'fa-fw fas fa-user' > < / i > {{ with $LastModifierEmail }}< a href = "mailto:{{ . }}" > {{ end }}{{ $LastModifierDisplayName }}{{ with $LastModifierEmail }}< / a > {{ end }}
2024-02-29 16:03:59 +01:00
{{- with $Date }}
2024-03-18 17:24:06 +01:00
< i class = 'fa-fw fas fa-calendar' > < / i > {{ . }}
2022-03-30 20:27:04 +02:00
{{- end }}
2023-05-26 08:35:27 +02:00
{{- end }}
2023-10-03 13:20:20 +02:00
{{- partial "term-list.html" (dict
"page" .
"taxonomy" "categories"
2023-10-05 08:11:46 +02:00
"icon" "layer-group"
2023-10-03 13:20:20 +02:00
) }}