Update step for creating site from scratch to use content.en path (#508)

Co-authored-by: parroty <parroty@users.noreply.github.com>
Co-authored-by: Alex Shpak <alex-shpak@users.noreply.github.com>
This commit is contained in:
Kenta Nakase 2023-02-14 07:05:05 +09:00 committed by GitHub
parent 61bb57f32e
commit 036e037a63
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -83,7 +83,7 @@ Below is an example on how to create a new site from scratch:
hugo new site mydocs; cd mydocs
git init
git submodule add https://github.com/alex-shpak/hugo-book themes/hugo-book
cp -R themes/hugo-book/exampleSite/content.en .
cp -R themes/hugo-book/exampleSite/content.en/* ./content
```
```sh