diff options
author | Yuqian Yang <crupest@crupest.life> | 2025-02-26 19:36:40 +0800 |
---|---|---|
committer | Yuqian Yang <crupest@crupest.life> | 2025-02-26 19:36:40 +0800 |
commit | 311dfdcc6b5712dd6085287ada5ebe48e02116c4 (patch) | |
tree | 37053cfe69bc7a115d849f61223cf51dedb99e80 /www/layouts/_default/baseof.html | |
parent | 0c885ba1bf30ce8308880f926be85b6f5a499fa6 (diff) | |
download | crupest-311dfdcc6b5712dd6085287ada5ebe48e02116c4.tar.gz crupest-311dfdcc6b5712dd6085287ada5ebe48e02116c4.tar.bz2 crupest-311dfdcc6b5712dd6085287ada5ebe48e02116c4.zip |
fix(www): css load blink, code block bg, links.
Diffstat (limited to 'www/layouts/_default/baseof.html')
-rw-r--r-- | www/layouts/_default/baseof.html | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/www/layouts/_default/baseof.html b/www/layouts/_default/baseof.html index defa6ac..55954d3 100644 --- a/www/layouts/_default/baseof.html +++ b/www/layouts/_default/baseof.html @@ -9,18 +9,13 @@ <title>{{ block "title" . }} {{ .Site.Title }} {{ end }}</title> - {{ with resources.Get "catppuccin-latte.css" | minify | fingerprint }} - <style>{{ printf `@import url(%s);` .RelPermalink | safeCSS }}</style> - {{ end }} - {{ with resources.Get "catppuccin-mocha.css" | minify | fingerprint }} - <style>{{ printf `@import url(%s) (prefers-color-scheme: dark);` .RelPermalink | safeCSS }}</style> - {{ end }} + {{ partial "js.html" "color-scheme.ts" }} + {{ partial "css-res.html" (partial "highlight.html" dict) }} {{ partial "css.html" "base-style.css" }} {{ block "head" . }} {{ end }} </head> <body> - {{ partial "js.html" "color-scheme.ts" }} <div id="slogan"> <span>🙃The world is full of pain, but we can fix it with love!</span> </div> |