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