Now the new software is starting to be fun, everything you need for usage and creation is largely present. It still has a few minor flaws and there are one or two features I want, but I can already do everything I really need as a minimum. Publishing now works easily with a shell script:

#!/bin/sh

cd ~/Blogs/rfc1437.de/html

rsync -rav --delete \
	--exclude='thumbnails/' \
	--exclude='media/' \
	* git.rfc1437.de:git-server/html/

cd ..

rsync -rav --delete thumbnails/ git.rfc1437.de:git-server/html/thumbnails/
rsync -rav --exclude='*.meta' --delete media/ git.rfc1437.de:git-server/html/media/

Yes, that was just to test my source formatting. And?