2020-01-31 15:53:04 +01:00
|
|
|
{{- define "title" -}}
|
2020-02-01 12:47:58 +01:00
|
|
|
{{- T "all" | humanize }}{{ T .Data.Plural | default .Data.Plural | humanize }} | {{ .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" -}}
|
|
|
|
{{- $taxonomies := .Data.Plural -}}
|
|
|
|
{{- $terms := .Data.Terms.ByCount -}}
|
|
|
|
{{- $type := .Type -}}
|
2019-08-04 15:53:35 +02:00
|
|
|
|
2020-02-01 12:47:58 +01:00
|
|
|
<div class="page archive">
|
2019-08-24 13:32:41 +02:00
|
|
|
<h2 class="post-title animated pulse faster">
|
2020-01-31 15:53:04 +01:00
|
|
|
{{- T "all" | humanize}}{{ T $taxonomies | default $taxonomies | humanize -}}
|
2019-08-04 15:53:35 +02:00
|
|
|
</h2>
|
|
|
|
|
|
|
|
<!-- Categories Page -->
|
2020-01-31 15:53:04 +01:00
|
|
|
{{- if eq $taxonomies "categories" -}}
|
2019-08-04 15:53:35 +02:00
|
|
|
<div class="categories-card">
|
2020-01-31 15:53:04 +01:00
|
|
|
{{- range $terms -}}
|
|
|
|
{{- $term := .Term -}}
|
|
|
|
{{- $pages := .Pages -}}
|
|
|
|
{{- with $.Site.GetPage "taxonomy" (printf "%s/%s" $type $term) -}}
|
2019-08-04 15:53:35 +02:00
|
|
|
<div class="card-item">
|
2020-01-31 18:52:27 +01:00
|
|
|
<div class="card-item-wrapper">
|
|
|
|
<h3 class="card-item-title">
|
|
|
|
<a href="{{ .Permalink }}">
|
|
|
|
<i class="far fa-folder fa-fw"></i> {{ $term | humanize}}
|
|
|
|
</a>
|
|
|
|
</h3>
|
2020-01-31 15:53:04 +01:00
|
|
|
{{- range first 5 $pages -}}
|
2019-08-04 15:53:35 +02:00
|
|
|
<article class="archive-item">
|
2020-01-31 15:53:04 +01:00
|
|
|
<a href="{{ .Permalink }}" class="archive-item-link">
|
|
|
|
{{- .Title -}}
|
|
|
|
</a>
|
2019-08-04 15:53:35 +02:00
|
|
|
</article>
|
2020-01-31 15:53:04 +01:00
|
|
|
{{- end -}}
|
|
|
|
{{- if gt (len $pages) 5 -}}
|
2019-08-04 15:53:35 +02:00
|
|
|
<span class="more-post">
|
2020-01-30 06:17:42 +01:00
|
|
|
<a href="{{ .Permalink }}" class="more-post-link">{{ T "more" }} >></a>
|
2019-08-04 15:53:35 +02:00
|
|
|
</span>
|
2020-01-31 15:53:04 +01:00
|
|
|
{{- end -}}
|
2019-08-04 15:53:35 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2020-01-31 15:53:04 +01:00
|
|
|
{{- end -}}
|
|
|
|
{{- end -}}
|
2019-08-04 15:53:35 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- Tag Cloud Page -->
|
2020-01-31 15:53:04 +01:00
|
|
|
{{- else if eq $taxonomies "tags" -}}
|
2019-08-04 15:53:35 +02:00
|
|
|
<div class="tag-cloud-tags">
|
2020-01-31 15:53:04 +01:00
|
|
|
{{- range $.Site.Taxonomies.tags.ByCount -}}
|
2019-08-19 17:00:26 +02:00
|
|
|
<a href="{{ .Page.Permalink }}"> {{ .Page.Title }} <small>({{ .Count }})</small></a>
|
2020-01-31 15:53:04 +01:00
|
|
|
{{- end -}}
|
2019-08-04 15:53:35 +02:00
|
|
|
</div>
|
|
|
|
|
2020-01-31 15:53:04 +01:00
|
|
|
{{- end -}}
|
2019-08-04 15:53:35 +02:00
|
|
|
</div>
|
2020-01-31 15:53:04 +01:00
|
|
|
{{- end -}}
|