From a82a019f6a74625fa3aac867a95bf342c9e7ff8c Mon Sep 17 00:00:00 2001 From: Anne Gentle Date: Thu, 5 Dec 2024 16:21:20 -0600 Subject: [PATCH] Update after more hugo testing --- _learn/03-hugo-go-netlify.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/_learn/03-hugo-go-netlify.md b/_learn/03-hugo-go-netlify.md index cb00e26..38dc1e1 100644 --- a/_learn/03-hugo-go-netlify.md +++ b/_learn/03-hugo-go-netlify.md @@ -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: ```