From dcee4fe4b15738c30eb3962ff6caa5db8845254c Mon Sep 17 00:00:00 2001 From: wires Date: Mon, 31 Mar 2025 13:46:45 -0400 Subject: theme changes --- layouts/partials/head.html | 13 +++---------- layouts/partials/tags.html | 7 ++++--- 2 files changed, 7 insertions(+), 13 deletions(-) (limited to 'layouts/partials') diff --git a/layouts/partials/head.html b/layouts/partials/head.html index ce38afc..e09b60c 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -6,16 +6,8 @@ {{ with .Keywords }}{{ end }} -{{- with resources.Get "style.css" }} - {{- if eq hugo.Environment "development" }} - - {{- else }} - {{- with . | minify | fingerprint }} - - {{- end }} - {{- end }} -{{- end }} -{{- with resources.Get "syntax.css" }} +{{ range slice "style.css" "syntax.css"}} +{{- with resources.Get . }} {{- if eq hugo.Environment "development" }} {{- else }} @@ -24,5 +16,6 @@ {{- end }} {{- end }} {{- end }} +{{ end }} {{ if .IsHome }}{{ site.Title }}{{ else }}{{ printf "%s | %s" .Title site.Title }}{{ end }} diff --git a/layouts/partials/tags.html b/layouts/partials/tags.html index 8062534..b464c47 100644 --- a/layouts/partials/tags.html +++ b/layouts/partials/tags.html @@ -1,5 +1,6 @@ {{ with .GetTerms "tags" }} -
-tags: -{{ range $i, $e := . }}{{- if $i -}}, {{ end -}}{{ with $e }}{{lower .Title}}{{end}}{{ end }} +

+ Tags:{{ range $i, $e := . }}{{- if $i -}},{{ end -}}{{ with $e }} + {{lower .Title}}{{end}}{{ end }} +

{{ end }} -- cgit 1.4.1