2022-03-30 18:27:04 +00:00
{{- with .Params.LastModifierDisplayName }}
2023-05-19 18:44:19 +00:00
< i class = 'fas fa-user' > < / i > {{ with $.Params.LastModifierEmail }}< a href = "mailto:{{ . }}" > {{ end }}{{ . }}{{ with $.Params.LastModifierEmail }}< / a > {{ end }}
2022-03-30 18:27:04 +00:00
{{- with $.Date }}
2023-05-19 18:44:19 +00:00
< i class = 'fas fa-calendar' > < / i > {{ . | time.Format ":date_medium" }}
2022-03-30 18:27:04 +00:00
{{- end }}
2023-05-26 06:35:27 +00:00
{{- end }}
{{- $page := . }}
{{- if .Params.categories }}
< i class = 'fas fa-list' > < / i >
{{- $categories := slice | append .Params.categories }}
{{- range $idx, $category := sort $categories }}
2023-09-30 19:45:39 +00:00
{{- with $page.Site.GetPage (printf "%s%s" ("/categories/" | relURL ) ( $category | plainify | anchorize ) ) }}
2023-05-26 06:35:27 +00:00
{{- $to := . }}
{{ if gt $idx 0 }} | {{ end }}< a class = "tag-link" href = "{{ partial " relLangPrettyUglyURL . hugo " ( dict " to " $ to ) } } " > {{ $category }}< / a >
{{- end }}
{{- end }}
{{- end }}