My First Posts
Hello World!
Hello How are you?
Boing Boing.
Basic Hugo Workflow
- hugo new site foobar-hugo-site
- cd foobar-hugo site
- git config user.name XXXX
git config user.email XXX@XXX - git submodule add https://github.com/spf13/hyde.git themes/hyde
- Add to
config.toml
theme = “hyde” - hugo new posts/my-first-post.md
- #Edit away
- hugo server -D # check localhost:1313
- hugo # compiles everything
- git remote add origin git@github.com:myrepo.git
- git branch -M main
- git push -u origin main