From 960e33d6491a4bbfdf12794ae504a26c526cc89c Mon Sep 17 00:00:00 2001 From: Brian Picciano Date: Tue, 16 Aug 2022 21:46:02 -0600 Subject: [PATCH] inline css into pages --- srv/src/http/tpl.go | 5 +++++ srv/src/http/tpl/base.html | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/srv/src/http/tpl.go b/srv/src/http/tpl.go index fb0f5bd..2edd7ac 100644 --- a/srv/src/http/tpl.go +++ b/srv/src/http/tpl.go @@ -66,6 +66,11 @@ func (a *api) tplFuncs() template.FuncMap { path = filepath.Join("static", path) return a.blogURL(path, false) }, + "StaticInlineCSS": func(path string) (template.CSS, error) { + path = filepath.Join("static", path) + b, err := staticFS.ReadFile(path) + return template.CSS(b), err + }, "AssetURL": func(id string) string { path := filepath.Join("assets", id) return a.blogURL(path, false) diff --git a/srv/src/http/tpl/base.html b/srv/src/http/tpl/base.html index 595ffe3..64b5ac3 100644 --- a/srv/src/http/tpl/base.html +++ b/srv/src/http/tpl/base.html @@ -2,8 +2,8 @@ - - + +