├── .gitignore ├── COPYING ├── Makefile.in ├── README.textile ├── bin ├── atom ├── mailhandler ├── makemake ├── page ├── post ├── sitemap ├── static ├── tpl ├── utterson.lib ├── wpmigrate └── wptouch ├── cfg ├── .gitignore ├── make.cfg.example └── utterson.cfg.example ├── layout ├── atom │ ├── footer │ ├── header │ └── item ├── sitemap │ ├── footer │ ├── header │ └── item ├── static │ └── main.css └── xhtml │ ├── footer │ ├── header │ ├── item │ ├── post │ └── redir └── procmailrc /.gitignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | blog 3 | posts 4 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stef/utterson/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stef/utterson/HEAD/Makefile.in -------------------------------------------------------------------------------- /README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stef/utterson/HEAD/README.textile -------------------------------------------------------------------------------- /bin/atom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stef/utterson/HEAD/bin/atom -------------------------------------------------------------------------------- /bin/mailhandler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stef/utterson/HEAD/bin/mailhandler -------------------------------------------------------------------------------- /bin/makemake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stef/utterson/HEAD/bin/makemake -------------------------------------------------------------------------------- /bin/page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stef/utterson/HEAD/bin/page -------------------------------------------------------------------------------- /bin/post: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stef/utterson/HEAD/bin/post -------------------------------------------------------------------------------- /bin/sitemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stef/utterson/HEAD/bin/sitemap -------------------------------------------------------------------------------- /bin/static: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stef/utterson/HEAD/bin/static -------------------------------------------------------------------------------- /bin/tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stef/utterson/HEAD/bin/tpl -------------------------------------------------------------------------------- /bin/utterson.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stef/utterson/HEAD/bin/utterson.lib -------------------------------------------------------------------------------- /bin/wpmigrate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stef/utterson/HEAD/bin/wpmigrate -------------------------------------------------------------------------------- /bin/wptouch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stef/utterson/HEAD/bin/wptouch -------------------------------------------------------------------------------- /cfg/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stef/utterson/HEAD/cfg/.gitignore -------------------------------------------------------------------------------- /cfg/make.cfg.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stef/utterson/HEAD/cfg/make.cfg.example -------------------------------------------------------------------------------- /cfg/utterson.cfg.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stef/utterson/HEAD/cfg/utterson.cfg.example -------------------------------------------------------------------------------- /layout/atom/footer: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /layout/atom/header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stef/utterson/HEAD/layout/atom/header -------------------------------------------------------------------------------- /layout/atom/item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stef/utterson/HEAD/layout/atom/item -------------------------------------------------------------------------------- /layout/sitemap/footer: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /layout/sitemap/header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stef/utterson/HEAD/layout/sitemap/header -------------------------------------------------------------------------------- /layout/sitemap/item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stef/utterson/HEAD/layout/sitemap/item -------------------------------------------------------------------------------- /layout/static/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stef/utterson/HEAD/layout/static/main.css -------------------------------------------------------------------------------- /layout/xhtml/footer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stef/utterson/HEAD/layout/xhtml/footer -------------------------------------------------------------------------------- /layout/xhtml/header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stef/utterson/HEAD/layout/xhtml/header -------------------------------------------------------------------------------- /layout/xhtml/item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stef/utterson/HEAD/layout/xhtml/item -------------------------------------------------------------------------------- /layout/xhtml/post: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stef/utterson/HEAD/layout/xhtml/post -------------------------------------------------------------------------------- /layout/xhtml/redir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stef/utterson/HEAD/layout/xhtml/redir -------------------------------------------------------------------------------- /procmailrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stef/utterson/HEAD/procmailrc --------------------------------------------------------------------------------