aboutsummaryrefslogtreecommitdiff
path: root/themes/default/layouts/partials/meta-anchored.html
diff options
context:
space:
mode:
Diffstat (limited to 'themes/default/layouts/partials/meta-anchored.html')
-rw-r--r--themes/default/layouts/partials/meta-anchored.html33
1 files changed, 19 insertions, 14 deletions
diff --git a/themes/default/layouts/partials/meta-anchored.html b/themes/default/layouts/partials/meta-anchored.html
index 31b910f..872f98e 100644
--- a/themes/default/layouts/partials/meta-anchored.html
+++ b/themes/default/layouts/partials/meta-anchored.html
@@ -1,19 +1,24 @@
-{{ if or .Weight .Params.Liked .Params.feed }}
- <micro-metadata-anchored>
+{{- if or .Weight .Params.Liked .Params.feed -}}
+ <meta-anchored>
+ {{- $author := .Section -}}
{{- partial "meta-via.html" . -}}
- {{ if .Weight }}
- <anchored-pinned>
+ {{- if .Weight -}}
+ <a data-anchored="pinned">
{{ safeHTML (readFile (print (partial "function-paths.html").static "/icons/tabler/pinned.svg")) }}
<span>Pinned</span>
- </anchored-pinned>
- {{ end }}
+ </a>
+ {{- end -}}
- {{ if .Params.Liked }}
- <anchored-liked>
- {{ safeHTML (readFile (print (partial "function-paths.html").static "/icons/feather/heart.svg")) }}
- <span>Liked</span>
- </anchored-liked>
- {{ end }}
- </micro-metadata-anchored>
-{{ end }}
+ {{- if .Params.Marked -}}
+ <a
+ href="{{ "" | absURL }}/{{ $author }}/marks/#marks"
+ data-anchored="marked"
+ data-hover=""
+ >
+ {{ safeHTML (readFile (print (partial "function-paths.html").static "/icons/feather/bookmark.svg")) }}
+ <span>Marked</span>
+ </a>
+ {{- end -}}
+ </meta-anchored>
+{{- end -}}