diff options
author | Paul Duncan <pabs@pablotron.org> | 2021-10-16 09:43:27 -0400 |
---|---|---|
committer | Paul Duncan <pabs@pablotron.org> | 2021-10-16 09:43:27 -0400 |
commit | 62c332b786fd6b849f1195e954b1e4ac715c4f30 (patch) | |
tree | 00b6ce61164fbea388d6f1ed7d6737707b4dea70 | |
parent | ba106a04778a8500e233e7496975912e5affa457 (diff) | |
download | pablotron.org-62c332b786fd6b849f1195e954b1e4ac715c4f30.tar.bz2 pablotron.org-62c332b786fd6b849f1195e954b1e4ac715c4f30.zip |
README.md: document asset pipeline
-rw-r--r-- | README.md | 14 |
1 files changed, 11 insertions, 3 deletions
@@ -76,9 +76,13 @@ The current theme is `hugo-pt2021` and is stored in this repository as * [Bulma 0.9.3][bulma]: CSS framework. * Several icons from [Feather Icons][feathericons]. -The [Bulma][] CSS is customized and minified using [Hugo -Pipes][hugo-pipes]. See `themes/hugo-pt2021/assets/style.sass` for -details. +The [Bulma][] [SASS][] is: + +1. Stripped of extraneous styles and combined with a small amount of + `pt2021`-specific styling. See `assets/style.sass`. +2. Converted from [SASS][] to [CSS][], minified, and fingerprinted + using [Hugo Pipes][hugo-pipes]. See `layouts/partials/head.html`. +3. Written to `public/style.$HASH.css`. [hugo]: https://gohugo.io/ "hugo static site generator" @@ -94,3 +98,7 @@ details. "beautiful open source icons" [hugo-pipes]: https://gohugo.io/hugo-pipes/ "hugo asset processing pipeline" +[sass]: https://sass-lang.com/ + "Syntactically Awesome Style Sheets" +[css]: https://en.wikipedia.org/wiki/CSS + "Cascading Style Sheets" |