Gallery SSG
at trunk 32 lines 467 B view raw view rendered
1# Galley 2 3Gallery Static Site Generator 4 5## Setup 6 71. Add an `assets` folder like this: 8 9``` 10assets 11├── art-piece-1 12│   ├── img.jpg 13│   └── manifest.toml 14└── art-piece-2 15 ├── img.jpg 16 └── manifest.toml 17``` 18 192. Populate the `manifest.toml` like this: 20 21``` 22name = "My Epic Art" 23tags = ["body horror", "epic"] 24alt = "Foo bar" 25 26[[image]] 27src = "./img.jpg" 28``` 29 303. `cargo run` 31 324. Serve a static webserver from `./dist`