mirror of
https://github.com/jackyzha0/quartz.git
synced 2026-03-25 07:25:42 -05:00
833 B
833 B
| title | description | compartir |
|---|---|---|
| Zola | Zola is a fast static site generator in a single binary with everything built-in. | true |
Introduction
Zola is a fast Static Site Generators (SSG) contained in a single binary with everything built-in, it has no other dependencies. It is by far my preferred way to build static websites.
SSGs use dynamic templates to transform content into static HTML pages. Static sites are thus very fast and require no databases, making them easy to host. Content is written in Markdown.
Useful Commands
# Initiate Zola project
zola init
# Serve Zola website
zola serve
# Build check
zola check
# Build w/ Options
zola --root /path/to/project --config config.staging.toml build --base-url $DEPLOY_URL --output-dir $DOCUMENT_ROOT