mirror of
https://github.com/dillonzq/LoveIt.git
synced 2024-11-14 02:46:16 +01:00
57 lines
No EOL
2.3 KiB
HTML
57 lines
No EOL
2.3 KiB
HTML
{{- define "title" -}}
|
|
{{- T "all" | humanize}}{{ T .Data.Plural | default .Data.Plural | humanize }} | {{ .Site.Title -}}
|
|
{{- end -}}
|
|
|
|
{{- define "content" -}}
|
|
{{- $taxonomies := .Data.Plural -}}
|
|
{{- $terms := .Data.Terms.ByCount -}}
|
|
{{- $type := .Type -}}
|
|
|
|
<div class="warpper archive">
|
|
<h2 class="post-title animated pulse faster">
|
|
{{- T "all" | humanize}}{{ T $taxonomies | default $taxonomies | humanize -}}
|
|
</h2>
|
|
|
|
<!-- Categories Page -->
|
|
{{- if eq $taxonomies "categories" -}}
|
|
<div class="categories-card">
|
|
{{- range $terms -}}
|
|
{{- $term := .Term -}}
|
|
{{- $pages := .Pages -}}
|
|
{{- with $.Site.GetPage "taxonomy" (printf "%s/%s" $type $term) -}}
|
|
<div class="card-item">
|
|
<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>
|
|
{{- range first 5 $pages -}}
|
|
<article class="archive-item">
|
|
<a href="{{ .Permalink }}" class="archive-item-link">
|
|
{{- .Title -}}
|
|
</a>
|
|
</article>
|
|
{{- end -}}
|
|
{{- if gt (len $pages) 5 -}}
|
|
<span class="more-post">
|
|
<a href="{{ .Permalink }}" class="more-post-link">{{ T "more" }} >></a>
|
|
</span>
|
|
{{- end -}}
|
|
</div>
|
|
</div>
|
|
{{- end -}}
|
|
{{- end -}}
|
|
</div>
|
|
|
|
<!-- Tag Cloud Page -->
|
|
{{- else if eq $taxonomies "tags" -}}
|
|
<div class="tag-cloud-tags">
|
|
{{- range $.Site.Taxonomies.tags.ByCount -}}
|
|
<a href="{{ .Page.Permalink }}"> {{ .Page.Title }} <small>({{ .Count }})</small></a>
|
|
{{- end -}}
|
|
</div>
|
|
|
|
{{- end -}}
|
|
</div>
|
|
{{- end -}} |