LoveIt/layouts/taxonomy/list.html

44 lines
1.7 KiB
HTML
Raw Normal View History

2020-01-31 15:53:04 +01:00
{{- define "title" -}}
{{- .Title }} - {{ T .Data.Singular | default .Data.Singular }} - {{ .Site.Title -}}
2020-01-31 15:53:04 +01:00
{{- end -}}
2019-08-04 15:53:35 +02:00
2020-01-31 15:53:04 +01:00
{{- define "content" -}}
<div class="page archive">
{{- /* Title */ -}}
2020-02-13 18:30:33 +01:00
<h2 class="single-title animated pulse faster">
2020-01-31 15:53:04 +01:00
{{- $taxonomy := .Data.Singular -}}
{{- if eq $taxonomy "category" -}}
<i class="far fa-folder-open fa-fw"></i>&nbsp;{{ .Title }}
2020-01-31 15:53:04 +01:00
{{- else if eq $taxonomy "tag" -}}
<i class="fas fa-tag fa-fw"></i>&nbsp;{{ .Title }}
2020-01-31 15:53:04 +01:00
{{- else -}}
{{- printf "%s - %s" (T $taxonomy | default $taxonomy) .Title -}}
2020-01-31 15:53:04 +01:00
{{- end -}}
2019-08-04 15:53:35 +02:00
</h2>
2019-08-24 13:32:41 +02:00
{{- /* Paginate */ -}}
{{- if .Pages -}}
{{- $pages := .Pages.GroupByDate "2006" -}}
{{- with .Site.Params.list.paginate | default .Site.Params.paginate -}}
{{- $pages = $.Paginate $pages . -}}
{{- else -}}
{{- $pages = .Paginate $pages -}}
{{- end -}}
{{- range $pages.PageGroups -}}
<h3 class="group-title">{{ .Key }}</h3>
{{- range .Pages -}}
<article class="archive-item">
<a href="{{ .RelPermalink }}" class="archive-item-link">
{{- .Title -}}
</a>
<span class="archive-item-date">
{{- .Date.Format ($.Site.Params.list.dateFormat | default "01-02") -}}
</span>
</article>
{{- end -}}
2020-01-31 15:53:04 +01:00
{{- end -}}
{{- partial "paginator.html" . -}}
2020-01-31 15:53:04 +01:00
{{- end -}}
2019-08-04 15:53:35 +02:00
</div>
2020-02-06 17:10:00 +01:00
{{- end -}}