diff --git a/README.md b/README.md index b5415caf..4d2db83f 100644 --- a/README.md +++ b/README.md @@ -198,7 +198,7 @@ There is a single parameter object with sensible defaults that can be overridden enable_math = false # Enables math typesetting for this page exclude_feeds = false # Excludes this page from feeds exclude_search = false # Excludes this page from search -style = "" # CSS included at the end of the stylesheet, before style-last.css, for this page +style = "" # CSS included at the end of the stylesheet for this page [paige.alert] @@ -810,8 +810,6 @@ Files can be included in many places in HTML. | `layouts/partials/paige/site-header-first.html` | The beginning of the site header | | `layouts/partials/paige/site-header-last.html` | The ending of the site header | | `layouts/partials/paige/site-last.html` | The ending of the site | -| `layouts/partials/paige/style-first.css` | The beginning of the styles | -| `layouts/partials/paige/style-last.css` | The ending of the styles | There are kind variants of include files that are included only when the file kind matches the page kind. diff --git a/assets/css/paige/paige.css b/assets/css/paige/paige.css index 328aee3d..3fe8766e 100644 --- a/assets/css/paige/paige.css +++ b/assets/css/paige/paige.css @@ -1,7 +1,5 @@ {{ $page := . }} -{{ partial "paige/func-include.html" (dict "name" "style-first%s.css" "page" $page) | safeCSS }} - .paige-shortcode-figure-numbered { counter-increment: paige-shortcode-figure-numbered; } @@ -109,5 +107,3 @@ table { {{ with $page.Param "paige.style" }} {{ . | safeCSS }} {{ end }} - -{{ partial "paige/func-include.html" (dict "name" "style-last%s.css" "page" $page) | safeCSS }}