The official website for WebODM, built with Zola — a fast static site generator written in Rust.
- Zola (v0.17+)
- Git
See the official installation docs.
git clone https://github.com/WebODM/webodm-web.git
cd webodm-web
zola serveOpen your browser at http://127.0.0.1:1111.
The site will live-reload automatically whenever you save a file.
webodm-web/
├── config.toml # Zola site configuration
├── start.sh # Helper script to run the dev server
├── content/ # Markdown pages and blog posts
│ └── blog/ # Blog entries
├── data/ # JSON data files (e.g. datasets)
├── public/ # Pre-built static assets (CSS, images)
├── static/ # Static files copied as-is to the output
├── templates/ # Tera HTML templates
│ ├── base.html # Base layout
│ ├── index.html # Homepage
│ ├── page.html # Generic page template
│ ├── download.html # Download page
│ └── datasets.html # Datasets page
└── themes/ # Zola themes (if any)
To generate the static site into the public/ directory:
zola build- Fork the repository and create a feature branch.
- Run
zola serveto preview your changes locally. - Commit your changes and open a pull request.
See the repository for license details.