Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates after Hugo testing #254

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
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