From 102119776af99898b959fea503de64d9934a0fac Mon Sep 17 00:00:00 2001
From: weru <fromweru@gmail.com>
Date: Thu, 29 Dec 2022 20:27:20 +0000
Subject: [PATCH] add taxonomy templates markup

---
 layouts/_default/list.html |   13 ++++++++++++-
 layouts/_default/term.html |   42 ++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 54 insertions(+), 1 deletions(-)

diff --git a/layouts/_default/list.html b/layouts/_default/list.html
index 059d552..ddbfa62 100644
--- a/layouts/_default/list.html
+++ b/layouts/_default/list.html
@@ -1,3 +1,14 @@
 {{- define "main" }}
-{{- .Content }}
+  {{- .Content }}
+  {{ if eq .Kind "taxonomy" }}
+  <ol>
+    {{ range .Data.Pages }}
+      <li>
+        <a href="{{ .Permalink }}">
+          {{ .Title }}
+        </a>
+      </li>
+    {{ end }}
+  </ol>
+  {{ end }}
 {{- end }}
diff --git a/layouts/_default/term.html b/layouts/_default/term.html
new file mode 100644
index 0000000..e81b969
--- /dev/null
+++ b/layouts/_default/term.html
@@ -0,0 +1,42 @@
+{{ define "main" }}
+{{- $pages := .Data.Pages }}
+{{ .Data.Terms }}
+<div class = 'wrap pt-2 mt-2'>
+  {{- $paginator := .Paginate $pages -}}
+  {{- $size := $paginator.PageSize }}
+  {{- $scratch := newScratch }}
+  {{- range $index, $value := $paginator.Pages }}
+    {{ if isset .Params "image" }}
+      {{ $scratch.Set "image" .Params.image }}
+    {{ else }}
+      {{ $scratch.Set "image" "thumbnail.svg" }}
+    {{ end }}
+    {{ $image := $scratch.Get "image" }}
+    {{ $bg := (absURL (printf "images/%s" $image)) }}
+    {{- if in $image "https://" }}
+      {{- $bg = $image }}
+    {{- end }}
+  <article class = 'article mb-2'>
+    <a href = '{{ $value.Permalink }}' {{ if eq $index 0 }} class = 'grid-reverse' {{ end }}>
+      <div class = 'article_thumb' style='background-image: url({{ $bg }})'></div>
+      <div class = 'article_meta {{ if eq $index 0 }} center_y {{ end }}'>
+        <time class = 'post_date'>{{ dateFormat "January 02, 2006" $value.Date }}</time>
+        <h3 class = 'article_title'>{{ $value.Title }}</h3>
+        <div class = 'article_excerpt {{ if eq $index 0 }} visible {{ end }}'>
+        <p>{{ $value.Summary | truncate 100 }}</p>
+        </div>
+      </div>
+    </a>
+  </article>
+  {{- if and (eq $index 0) (gt $size 1)  }}<div class = 'grid-2 article_showcase'>{{ end }}
+  {{- if and (eq $index (add $size -1)) (gt $size 1) }}</div>{{ end }}
+  {{- end }}
+</div>
+<!-- <a href = '{{ absURL (printf "post/%s" "") }}' class = 'post_nav'>
+  <span class = 'post_next'>View Archive
+  <svg class="icon icon_scale">
+    <use xlink:href="#double-arrow"></use>
+  </svg>
+  </span>
+</a> -->
+{{ end }}

--
Gitblit v1.10.0