Initial commit.

This commit is contained in:
Nicolás Ortega Froysa
2020-11-12 10:08:48 +01:00
commit 5e0cbb070b
269 changed files with 4410 additions and 0 deletions

15
Makefile Normal file
View File

@@ -0,0 +1,15 @@
.PHONY: pages blog all clean
pages:
mkdir -p output
find pages -type f -name '*.cfg' -print0 | sort -zr | xargs -0 saait
cp nicolas@ortegas.org_pub.asc style.css favicon.png output/
blog:
mkdir -p output/blog
find blog/posts -type f -name '*.cfg' -print0 | sort -zr | xargs -0 saait -o output/blog/ -t blog/templates/
all: pages blog
clean:
rm -rf output