missg
Minimal static site generator
Usage
Init
Create standard folder structure:
missg init
├── cfg.missg
├── content
│ ├── index.md
│ ├── posts
│ │ ├── post_1.md
│ │ └── post_2.yml
│ └── style.css
├── public
│ ├── index.html
│ ├── posts
│ │ ├── post_1.html
│ │ └── post_2.html
│ └── style.css
└── templates
├── footer.html
└── header.html
Generate
Generate site into public based on content, cfg.missg and templates:
missg generate
Ths converts markdown files into HTML an applies header and footer templates.
All other files(CSS, images etc.) are copied as they are found in content.
Add
Add new page:
missg add path