Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions _learn/03-hugo-go-netlify.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,13 +69,14 @@ For a Hugo static site, you can choose your specific theme after you create the
```
1. To get the theme files in the `/themes` directory, and keep them updated, use a `git submodules` command to get the required theme files as well as keep them updated.
```
$ cd themes
$ hugo mod init example.com
```
The terminal returns something like this:
```
go: creating new go.mod: module example.com
go: to add module requirements and sums:
go mod tidy
hugo: to add module requirements and sums:
hugo mod tidy
```
Next, add the theme as a Git submodule with this command:
```
Expand Down
Loading