Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 2 additions & 1 deletion 404.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ search_omit: true
permalink: /404.html
---

Sorry, but the page you were trying to find does not exist --- perhaps you can try searching for it below.
Sorry, but the page you were trying to find does not exist.
Try searching for it below.

<script type="text/javascript">
var GOOG_FIXURL_LANG = 'en';
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ On macOS you need to install brew, bundler.io, and Ruby version manager so that
$ echo 'if which rbenv > /dev/null; then eval "$(rbenv init -)"; fi' >> ~/.zshrc
```

1. Source your `.bash_profile` file. If you are using macOS Catalina, your profile file may be `.zshrc`.
1. Source your `.bash_profile` file. If you are using macOS Catalina or later, your profile file may be `.zshrc`.

```
$ source ~/.bash_profile
Expand Down
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