From def95886fb086261a7218e9d5b9f92d71d27f68c Mon Sep 17 00:00:00 2001 From: Benjamin Kane Date: Fri, 12 Feb 2021 05:36:01 -0800 Subject: [PATCH] Add final directory structure to overview (#1348) For https://github.com/getzola/zola/issues/1341 --- .../documentation/getting-started/overview.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/docs/content/documentation/getting-started/overview.md b/docs/content/documentation/getting-started/overview.md index 10604816..e6187b8c 100644 --- a/docs/content/documentation/getting-started/overview.md +++ b/docs/content/documentation/getting-started/overview.md @@ -45,6 +45,24 @@ You will be asked a few questions. └── themes ``` +For reference, by the **end** of this overview, our `myblog` directory will have the following structure: + +``` +├── config.toml +├── content/ +│ └── blog/ +│ ├── _index.md +│ └── first.md +├── sass/ +├── static/ +├── templates/ +│ ├── base.html +│ ├── blog-page.html +│ ├── blog.html +│ └── index.html +└── themes/ +``` + Let's start the Zola development server with: ```bash