config.toml 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. baseURL = "https://example.com"
  2. languageCode = "en-us"
  3. defaultContentLanguage = "en"
  4. title = "Cupper"
  5. theme = "cupper-hugo-theme"
  6. googleAnalytics = "UA-123456789-1"
  7. [taxonomies]
  8. tag = "tags"
  9. [permalinks]
  10. post = "/:filename/"
  11. [imaging]
  12. quality = 99
  13. [params]
  14. description = "An accessibility-friendly Hugo theme, ported from the [original Cupper](https://github.com/ThePacielloGroup/cupper) project."
  15. footer = "Made with [Hugo](https://gohugo.io/). Themed by [Cupper](https://github.com/zwbetz-gh/cupper-hugo-theme). Deployed to [Netlify](https://www.netlify.com/)."
  16. # For more date formats see https://gohugo.io/functions/format/
  17. dateFormat = "Jan 2, 2006"
  18. codePenUser = "someUser"
  19. [menu]
  20. [[menu.nav]]
  21. name = "Home"
  22. url = "/"
  23. weight = 1
  24. [[menu.nav]]
  25. name = "Blog"
  26. url = "/post/"
  27. weight = 2
  28. [[menu.nav]]
  29. name = "Tags"
  30. url = "/tags/"
  31. weight = 3
  32. [[menu.nav]]
  33. name = "About"
  34. url = "/about/"
  35. weight = 4
  36. [[menu.nav]]
  37. name = "RSS"
  38. url = "/index.xml"
  39. weight = 5