commit 3699ee1a6bbc9b1521342a57f65d97bc6bb7a991
parent 5e9cefe62e693829e2ae27f9e2d747180aa70c1f
Author: Luke Smith <luke@lukesmith.xyz>
Date: Sun, 10 Jul 2022 00:19:59 -0400
Merge branch 'master' of github.com:LukeSmithxyz/lugo
Diffstat:
2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
@@ -6,7 +6,6 @@
{{- range $k, $v := .Params.tags -}}
{{- $url := printf "tags/%s" (. | urlize | lower) -}}
<a id="tag_{{ . | lower }}" href="{{ $url | absURL }}">{{ . | title }}</a>
- {{- if lt $k (sub $tagsLen 1) }}·{{ end -}}
{{- end -}}
</div>
{{- end -}}
diff --git a/static/style.css b/static/style.css
@@ -43,6 +43,10 @@ nav ul, footer ul, #taglist {
margin: .5em;
}
+.taglist a:not(:last-child)::after {
+ content: " ยท ";
+}
+
@media (min-width: 1200px) {
nav {