├── .gitignore ├── CNAME ├── LICENSE ├── Makefile ├── README.md ├── TODO ├── example ├── CNAME ├── Makefile ├── favicon.ico ├── first │ ├── image.jpg │ ├── index.html │ └── index.md ├── index.html ├── index.md ├── makesite.py ├── second │ ├── image.jpg │ ├── index.html │ └── index.md ├── style.css ├── template.html └── third │ ├── index.html │ └── index.md ├── index.html ├── index.md ├── makesite.py ├── style.css └── template.html /.gitignore: -------------------------------------------------------------------------------- 1 | log 2 | old 3 | *.bak 4 | .hyde_deps 5 | .gitignore 6 | -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | http://fspaolo.github.io/makesite 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fspaolo/makesite/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fspaolo/makesite/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fspaolo/makesite/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fspaolo/makesite/HEAD/TODO -------------------------------------------------------------------------------- /example/CNAME: -------------------------------------------------------------------------------- 1 | yourdomain.com 2 | -------------------------------------------------------------------------------- /example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fspaolo/makesite/HEAD/example/Makefile -------------------------------------------------------------------------------- /example/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fspaolo/makesite/HEAD/example/favicon.ico -------------------------------------------------------------------------------- /example/first/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fspaolo/makesite/HEAD/example/first/image.jpg -------------------------------------------------------------------------------- /example/first/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fspaolo/makesite/HEAD/example/first/index.html -------------------------------------------------------------------------------- /example/first/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fspaolo/makesite/HEAD/example/first/index.md -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fspaolo/makesite/HEAD/example/index.html -------------------------------------------------------------------------------- /example/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fspaolo/makesite/HEAD/example/index.md -------------------------------------------------------------------------------- /example/makesite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fspaolo/makesite/HEAD/example/makesite.py -------------------------------------------------------------------------------- /example/second/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fspaolo/makesite/HEAD/example/second/image.jpg -------------------------------------------------------------------------------- /example/second/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fspaolo/makesite/HEAD/example/second/index.html -------------------------------------------------------------------------------- /example/second/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fspaolo/makesite/HEAD/example/second/index.md -------------------------------------------------------------------------------- /example/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fspaolo/makesite/HEAD/example/style.css -------------------------------------------------------------------------------- /example/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fspaolo/makesite/HEAD/example/template.html -------------------------------------------------------------------------------- /example/third/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fspaolo/makesite/HEAD/example/third/index.html -------------------------------------------------------------------------------- /example/third/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fspaolo/makesite/HEAD/example/third/index.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fspaolo/makesite/HEAD/index.html -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fspaolo/makesite/HEAD/index.md -------------------------------------------------------------------------------- /makesite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fspaolo/makesite/HEAD/makesite.py -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fspaolo/makesite/HEAD/style.css -------------------------------------------------------------------------------- /template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fspaolo/makesite/HEAD/template.html --------------------------------------------------------------------------------