quartz/content/Zola.md
Miguel Pimentel d7bf0695de
Pull-Request [ariasae-12-15-2023] from Obsidian (#50)
* PUSH NOTE : Mermaid Gantt.md

* PUSH NOTE : Bookmark Collections.md

* PUSH NOTE : Dominican Republic.md

* PUSH NOTE : Books Collection.md

* PUSH NOTE : Meta.md

* PUSH NOTE : Inspirations.md

* PUSH NOTE : index.md

* PUSH NOTE : Serif.md

* PUSH NOTE : Move Your Body.md

* PUSH NOTE : Consistency.md

* PUSH NOTE : Reverse Outlines.md

* PUSH NOTE : Sans-serif.md

* PUSH NOTE : Micropolitan Statistical Area.md

* PUSH NOTE : Chords.md

* PUSH NOTE : Atomic Notes.md

* PUSH NOTE : Zola.md

* PUSH NOTE : Svelte.md

* PUSH NOTE : Rhizomatic Learning.md

* PUSH NOTE : Rhombic Dodecahedron.md

* PUSH NOTE : Past Titles and Roles.md

* PUSH NOTE : NeoVim.md

* PUSH NOTE : Markdown.md

* PUSH NOTE : JavaScript.md

* PUSH NOTE : CSS.md

* PUSH NOTE : Bulma.md

* PUSH NOTE : Quotes Collection.md

* PUSH NOTE : Words I Like.md

* PUSH NOTE : Free Facts.md
2023-12-15 10:03:04 -06:00

43 lines
889 B
Markdown

---
title: Zola
description: Zola is a fast static site generator in a single binary with everything built-in.
updated: 2023-12-15
compartir: true
---
## Introduction
[Zola](https:) is a fast [[./Static Site Generators|static site generator]] (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|Markdown]].
## Useful Commands
```bash
zola build --base-url $DEPLOY_URL
```
```bash
zola build --output-dir $DOCUMENT_ROOT
```
```bash
zola --config config.staging.toml build
```
```bash
zola --root /path/to/project build
```
```bash
zola init
```
```bash
zola serve
```
```bash
zola check
```