Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/CaiJimmy/hugo-theme-stack.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/_default/term.html')
-rw-r--r--layouts/_default/term.html70
1 files changed, 31 insertions, 39 deletions
diff --git a/layouts/_default/term.html b/layouts/_default/term.html
index 9bf62fe..0d0a35f 100644
--- a/layouts/_default/term.html
+++ b/layouts/_default/term.html
@@ -1,45 +1,37 @@
-{{ define "body_class" }}2-column{{ end }}
{{ define "main" }}
-<div class="container extended flex on-phone--column">
- {{ partial "sidebar/left.html" . }}
+ <h3 class="taxonomy-type">{{ .Type | singularize | humanize }}</h3>
+ <div class="taxonomy-card">
+ <div class="taxonomy-details">
+ <h3 class="taxonomy-count">{{ len .Pages }} post{{ if gt (len .Pages) 1 }}s{{ end }}</h3>
+ <h1 class="taxonomy-term">{{ .Title }}</h1>
+ {{ with .Params.description }}
+ <h2 class="taxonomy-description">{{ . }}</h2>
+ {{ end }}
+ </div>
- <main class="main">
-
- <h3 class="taxonomy-type">{{ .Type | singularize | humanize }}</h3>
- <div class="taxonomy-card">
- <div class="taxonomy-details">
- <h3 class="taxonomy-count">{{ len .Pages }} post{{ if gt (len .Pages) 1 }}s{{ end }}</h3>
- <h1 class="taxonomy-term">{{ .Title }}</h1>
- {{ with .Params.description }}
- <h2 class="taxonomy-description">{{ . }}</h2>
+ {{ $image := partial "helper/image" (dict "Context" . "Type" "taxonomy") }}
+ {{ if $image.exists }}
+ <div class="taxonomy-image">
+ {{ if $image.resource }}
+ {{- $thumbnail := $image.resource.Fill "120x120" -}}
+ <img src="{{ $thumbnail.RelPermalink }}" width="{{ $thumbnail.Width }}"
+ height="{{ $thumbnail.Height }}" loading="lazy">
+ {{ else }}
+ <img src="{{ $image.permalink }}" loading="lazy">
{{ end }}
</div>
+ {{ end }}
+ </div>
+
+ <section class="article-list--compact">
+ {{ $v2 := where .Pages "Params.hidden" "!=" true }}
+ {{ $pag := .Paginate (.Pages) }}
+ {{ range $pag.Pages }}
+ {{ partial "article-list/compact" . }}
+ {{ end }}
+ </section>
+
+ {{- partial "pagination.html" . -}}
- {{ $image := partial "helper/image" (dict "Context" . "Type" "taxonomy") }}
- {{ if $image.exists }}
- <div class="taxonomy-image">
- {{ if $image.resource }}
- {{- $thumbnail := $image.resource.Fill "120x120" -}}
- <img src="{{ $thumbnail.RelPermalink }}" width="{{ $thumbnail.Width }}"
- height="{{ $thumbnail.Height }}" loading="lazy">
- {{ else }}
- <img src="{{ $image.permalink }}" loading="lazy">
- {{ end }}
- </div>
- {{ end }}
- </div>
-
- <section class="article-list--compact">
- {{ $v2 := where .Pages "Params.hidden" "!=" true }}
- {{ $pag := .Paginate (.Pages) }}
- {{ range $pag.Pages }}
- {{ partial "article-list/compact" . }}
- {{ end }}
- </section>
-
- {{- partial "pagination.html" . -}}
-
- {{ partialCached "footer/footer" . }}
- </main>
-</div>
+ {{ partialCached "footer/footer" . }}
{{ end }} \ No newline at end of file