# Vite > A simple and mnml static site generator; pronounced as /vit/ ## Usage ```console $ vite.py new ``` Write your Markdown files in `pages/` and ```console $ vite.py build ``` *OR* ```console $ make.py # at the project directory ``` Rendered HTML will be in `build/` ## Configuration Not very sophisticated, but basic configuration can be acheived using `config.py` found in the project directory. Example config: ```python # config.py title = '' author = '' header = '' footer = '' ``` ## Templating Vite uses Jinja2 templating. A basic example would be: ```html {{ title }} {{ body }} ``` ## TODO - [x] Templating - [ ] CSS support - [ ] Implement a simple HTTP server (_later_) - [x] Add example site - [x] Basic config (`config.py`)