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
:
```yml
image: pythondude/gallium:
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.