Add style-first.css, style-last.css

This commit is contained in:
Will Faught
2023-02-25 11:32:44 -08:00
parent 1f06a33ceb
commit d6d2117fbb
3 changed files with 10 additions and 2 deletions

View File

@@ -1,6 +1,10 @@
{{ $page := . }}
<style>
{{ if templates.Exists "partials/paige/style-first.css" }}
{{ partial "paige/style-first.css" $page | safeCSS }}
{{ end }}
body, html {
height: 100%;
}
@@ -96,4 +100,8 @@ body, html {
{{ partial "paige/light.css" . | safeCSS }}
}
{{ end }}
{{ if templates.Exists "partials/paige/style-last.css" }}
{{ partial "paige/style-last.css" $page | safeCSS }}
{{ end }}
</style>