mirror of
https://github.com/foo-dogsquared/website.git
synced 2025-02-07 12:19:36 +00:00
![Gabriel Arazas](/assets/img/avatar_default.png)
* The 'Moving into NixOS' post has been restructured. * The images folder is now referred to as the assets folder as it can contain other than images. (Why didn't I think about this before?) * 'bin/openring-create' is revamped. * Minor styling tweaks. * The Makefile has been updated to reflect the change of 'bin/openring-create'.
12 lines
256 B
Makefile
12 lines
256 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
|
|
hugo serve --buildFuture
|