The Pillow website is hosted at python-pillow.org.
It's a static site — plain HTML, CSS, and a touch of vanilla JS, with no build
step or framework. GitHub Pages serves it directly from the main branch.
index.html— the entire site (single page)assets/css/pillow.css— all stylesassets/js/back-to-top.js— the "back to top" button behaviorassets/images/— logos, hero art, and other imagesassets/fontawesome/— vendored Font Awesome icons
Since there's no build step, any static file server works, for example:
python3 -m http.server 8000
Then open http://localhost:8000/ in a browser.
This repo uses pre-commit for basic hygiene checks (trailing whitespace, end-of-file, YAML/JSON validation, etc.). Install it and run against all files with:
pre-commit run --all-files
or, if you have just installed:
just precommit