Add final directory structure to overview (#1348)

For https://github.com/getzola/zola/issues/1341
This commit is contained in:
Benjamin Kane 2021-02-12 05:36:01 -08:00 committed by GitHub
parent 49b6087d21
commit def95886fb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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