My First Posts

Hello World!

Hello How are you?
Boing Boing.

Basic Hugo Workflow

  1. hugo new site foobar-hugo-site
  2. cd foobar-hugo site
  3. git config user.name XXXX
    git config user.email XXX@XXX
  4. git submodule add https://github.com/spf13/hyde.git themes/hyde
  5. Add to config.toml theme = “hyde”
  6. hugo new posts/my-first-post.md
  7. #Edit away
  8. hugo server -D # check localhost:1313
  9. hugo # compiles everything
  10. git remote add origin git@github.com:myrepo.git
  11. git branch -M main
  12. git push -u origin main