Set up Jekyll with the Minimal Mistakes theme

This commit is contained in:
2025-06-26 22:06:13 -04:00
commit ef61217c10
11 changed files with 195 additions and 0 deletions

10
Makefile Normal file
View File

@@ -0,0 +1,10 @@
.PHONY: install clean
install:
bundle config set --local path 'vendor/bundle'
bundle install
bundle exec jekyll serve
clean:
rm -rf _site vendor .bundle .jekyll-cache