website/Makefile
Gabriel Arazas d93a666ddb Update the site layout
Now with improved horizontal rules!
2020-12-23 17:36:43 +08:00

12 lines
324 B
Makefile

.PHONY = build
build: build-openring
hugo
.PHONY = build-openring
build-openring:
./bin/openring-create --input assets/templates/openring-input.html --output layouts/partials/openring.html
.PHONY = serve
serve: build-openring
ls assets/templates/openring-input.html | entr make build-openring& hugo serve --buildFuture