Crates.io | gallium |
lib.rs | gallium |
version | 0.1.3 |
source | src |
created_at | 2019-08-12 18:09:41.763477 |
updated_at | 2019-08-19 20:13:19.542277 |
description | A static site generator with support for handlebars templates and markdown |
homepage | |
repository | https://gitlab.com/pythondude325/gallium |
max_upload_size | |
id | 156188 |
size | 83,965 |
Gallium is a static site generator with support for handlebars templates and markdown
Gallium can be installed as a CLI application from crates.io with the following command: cargo install gallium
Gallium is also available on Docker Hub at pythondude/gallium:<version>
Gallium was designed to be used in Gitlab Pages. Here is an example .gitlab-ci.yml
:
image: pythondude/gallium:<version>
pages:
stage: deploy
script:
- gallium --input root --templates templates --output public
artifacts:
paths:
- public
only:
- master
You can see Gallium in action on Gitlab pages here.