Vite

> A simple and mnml static site generator; pronounced as /vit/ Usage ----- ```console $ vite.py new ``` Write your Markdown files in the `pages` directory and execute ```console $ vite.py build ``` Rendered HTML will be in the `build` directory. 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 }}
{{ footer }}
``` Directory tree -------------- example ├── build │   └── test_page1 │   └── index.html ├── config.py ├── make.py -> /home/icyphox/code/vite/make.py ├── pages │   └── test_page1.md └── templates └── index.html TODO ---- - [x] Templating - [ ] CSS support - [ ] Implement a simple HTTP server (*later*) - [x] Add example site - [x] Basic config (`config.py`) ## Credits _Logo credits_: Freepik from www.flaticon.com is licensed by CC 3.0 BY _Hue_: [UltimateHackers/hue](https://github.com/UltimateHackers/hue)