This is the website for Sheffield Hackspace. It is in two parts:
- homepage - written using HTML
- blog - written using Jekyll
see blog readme
# edit homepage/index.html and then make it sync with _site/index.html somehow
# option 1 - watch out because linking it means deleting _site/index.html deletes original file
rm _site/index.html
# option 2 - watch for changes and move it
find homepage | entr cp -rv homepage/* _site
# then set up a live server serving _site somehow (probably with)
python -m http.server 8080 -d _siterm -rf _site
mkdir _site
# build blog (see blog README for how to install build tools)
(
cd blog
bundle exec jekyll build
npx -y pagefind --site _site
)
# move blog to _site
cp -r blog/_site/* _site
# move homepage to _site
cp -r homepage/* _site
# open server
python -m http.server 8080 -d _siteThe header font used is "Big Noodle Titling" (WOFF2).
The body font used is "Fira Sans".
All changes should be made as a pull request to main. All changes require a PR review from one trustee.

