From 9fc91215f47e5bed553e5ee3ec116423f65f1131 Mon Sep 17 00:00:00 2001 From: David Date: Mon, 28 Oct 2019 18:36:24 +0100 Subject: [PATCH] zola: add page (#3492) --- pages/common/zola.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pages/common/zola.md diff --git a/pages/common/zola.md b/pages/common/zola.md new file mode 100644 index 0000000000..583e4304dd --- /dev/null +++ b/pages/common/zola.md @@ -0,0 +1,24 @@ +# zola + +> A fast static site generator in a single binary with everything built-in. +> More information: . + +- Create the directory structure used by Zola at the given directory: + +`zola init {{my_site}}` + +- Build the whole site in the `public` directory after deleting it: + +`zola build` + +- Build the whole site into a different directory: + +`zola build --output-dir {{path/to/output_directory/}}` + +- Build and serve the site using a local server (default is `127.0.0.1:1111`): + +`zola serve` + +- Build all pages just like the build command would, but without writing any of the results to disk: + +`zola check`