Initial commit

This commit is contained in:
2020-03-25 22:31:01 +01:00
commit 8b2cdc1bf9
29 changed files with 1456 additions and 0 deletions

16
Makefile Normal file
View File

@@ -0,0 +1,16 @@
img: assets/img/raw/*
for file in assets/img/raw/* ; do \
basename=`basename $$file`; \
convert assets/img/raw/$$basename -sampling-factor 4:2:0 -strip -quality 75 -interlace JPEG -colorspace RGB assets/img/$$basename ; \
done
build: img
rm -rf _site; exit 0
~/.gem/ruby/2.6.0/bin/jekyll build
tar -czf blog.tar.gz _site
serve: img
~/.gem/ruby/2.6.0/bin/jekyll serve \
--drafts \
--unpublished \
--future