├── .gitignore ├── Makefile ├── README.md ├── config.mk ├── doc ├── config ├── config_black └── config_darkorange ├── ssg ├── ssg.1 └── t └── test /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jroimartin/ssg/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jroimartin/ssg/HEAD/README.md -------------------------------------------------------------------------------- /config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jroimartin/ssg/HEAD/config.mk -------------------------------------------------------------------------------- /doc/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jroimartin/ssg/HEAD/doc/config -------------------------------------------------------------------------------- /doc/config_black: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jroimartin/ssg/HEAD/doc/config_black -------------------------------------------------------------------------------- /doc/config_darkorange: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jroimartin/ssg/HEAD/doc/config_darkorange -------------------------------------------------------------------------------- /ssg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jroimartin/ssg/HEAD/ssg -------------------------------------------------------------------------------- /ssg.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jroimartin/ssg/HEAD/ssg.1 -------------------------------------------------------------------------------- /t/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jroimartin/ssg/HEAD/t/test --------------------------------------------------------------------------------