mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2024-11-23 15:57:57 +00:00
17 lines
867 B
HTML
17 lines
867 B
HTML
{{- with .Params.LastModifierDisplayName }}
|
|
<i class='fas fa-user'></i> {{ with $.Params.LastModifierEmail }}<a href="mailto:{{ . }}">{{ end }}{{ . }}{{ with $.Params.LastModifierEmail }}</a>{{ end }}
|
|
{{- with $.Date }}
|
|
<i class='fas fa-calendar'></i> {{ . | time.Format ":date_medium" }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- $page := . }}
|
|
{{- if .Params.categories }}
|
|
<i class='fas fa-list'></i>
|
|
{{- $categories := slice | append .Params.categories }}
|
|
{{- range $idx, $category := sort $categories }}
|
|
{{- with $page.Site.GetPage (printf "%s%s" ("/categories/" | relURL ) ( $category | plainify | anchorize ) ) }}
|
|
{{- $to := . }}
|
|
{{ if gt $idx 0 }} | {{ end }}<a class="tag-link" href="{{ partial "relLangPrettyUglyURL.hugo" (dict "to" $to) }}">{{ $category }}</a>
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end }}
|