summaryrefslogtreecommitdiff
path: root/themes/blowfish/layouts/partials/article-meta/term.html
diff options
context:
space:
mode:
Diffstat (limited to 'themes/blowfish/layouts/partials/article-meta/term.html')
-rw-r--r--themes/blowfish/layouts/partials/article-meta/term.html36
1 files changed, 36 insertions, 0 deletions
diff --git a/themes/blowfish/layouts/partials/article-meta/term.html b/themes/blowfish/layouts/partials/article-meta/term.html
new file mode 100644
index 0000000..d5377dc
--- /dev/null
+++ b/themes/blowfish/layouts/partials/article-meta/term.html
@@ -0,0 +1,36 @@
+{{/* Determine the correct context and scope */}}
+{{/* This allows for different logic depending on where the partial is called */}}
+{{ $context := . }}
+{{ $scope := default nil }}
+
+{{ if (reflect.IsMap . ) }}
+{{ $context = .context }}
+{{ $scope = cond (not .scope) nil .scope }}
+{{ end }}
+
+{{ with $context }}
+{{ $meta := newScratch }}
+
+{{/* Gather partials for this context */}}
+
+{{ if (.Params.showViews | default (.Site.Params.term.showViews | default false)) }}
+{{ $meta.Add "partials" (slice (partial "meta/views.html" .)) }}
+{{ end }}
+
+{{ if (.Params.showLikes | default (.Site.Params.term.showLikes | default false)) }}
+{{ $meta.Add "partials" (slice (partial "meta/likes.html" .)) }}
+{{ end }}
+
+{{ if and (eq $scope "single") (.Params.showLikes | default (.Site.Params.term.showLikes | default false)) }}
+{{ $meta.Add "partials" (slice (partial "meta/likes_button.html" .)) }}
+{{ end }}
+
+
+<div class="flex flex-row flex-wrap items-center">
+ {{/* Output partials */}}
+ {{ with ($meta.Get "partials") }}
+ {{ delimit . "<span class=\"px-2 text-primary-500\">&middot;</span>" | safeHTML}}
+ {{ end }}
+</div>
+
+{{ end }} \ No newline at end of file