diff options
author | Brian Picciano <mediocregopher@gmail.com> | 2022-08-16 21:46:02 -0600 |
---|---|---|
committer | Brian Picciano <mediocregopher@gmail.com> | 2022-08-16 21:46:02 -0600 |
commit | 960e33d6491a4bbfdf12794ae504a26c526cc89c (patch) | |
tree | a908b40f8fbf70d4fc16835e12c51d69f1096d4a /srv/src/http/tpl | |
parent | bf8412969a60b5da29d622418e8a4efd9d444a12 (diff) |
inline css into pages
Diffstat (limited to 'srv/src/http/tpl')
-rw-r--r-- | srv/src/http/tpl/base.html | 4 |
1 files changed, 2 insertions, 2 deletions
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 @@ <html> <head> - <link rel="stylesheet" href="{{ StaticURL "new.css" }}"> - <link rel="stylesheet" href="{{ StaticURL "mediocre.css" }}"> + <style>{{ StaticInlineCSS "new.css" }}</style> + <style>{{ StaticInlineCSS "mediocre.css" }}</style> </head> <body> |