New hugo-based web site.

This commit is contained in:
Justus Winter 2020-02-23 20:05:33 +01:00
commit f108b70c83
13 changed files with 612 additions and 0 deletions

16
Makefile Normal file
View file

@ -0,0 +1,16 @@
# Makefile for Sequoia-www.
# Tools.
HUGO ?= hugo
HUGO_FLAGS ?= --destination=public
.PHONY: all
all: build
.PHONY: build
build:
$(HUGO) $(HUGO_FLAGS)
.PHONY: server
server:
$(HUGO) server