pageit: a static html generator
¶
pageit is a python tool for generating static website using Mako Templates similar to Jekyll and Hyde.
Quick Links¶
- Code & Issues (GitHub)
- Documentation (Read the Docs)
- Package (PyPI)
Getting Started¶
- Install the package:
$ pip install pageit
- Create a directory called site where you will put your html files:
$ mkdir site
$ cd site
- Run
pageitto generate the html files:
$ pageit
- Directories with names that end with
.makowill be ignored. This is a good way to prevent your mako layouts from getting rendered. - Files that end with
.makowill be rendered usingmako; the generated file will have the.makoextension removed.
Contribute¶
If you want to play around with the latest code, start by cloning the repository, installing the dependencies, and building using Paver:
$ git clone git://github.com/metaist/pageit.git
$ pip install -r requirements.txt --use-mirrors
$ paver test
License¶
Licensed under the MIT License.