About this website

^home

Could you tell? I manage this website with Emacs! I write pages using org-mode, and manage everyting with this simple Makefile:

targets = $(patsubst %.org,%.html,$(shell find . -type f -name '*.org' -not -path "./themes/*"))

all: $(targets)

.PHONY: clean
clean:
        rm $(targets)

$(targets): %.html: %.org
        emacs --batch --eval '(progn (package-initialize) (require (quote htmlize)) (require (quote rasp)) (require (quote org)) (setq org-html-htmlize-output-type (quote css)) (find-file "$<") (org-html-export-to-html))'