config.toml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. homeMetaContent = "An accessibility-friendly Hugo theme, ported from the original Cupper project."
  16. 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/)."
  17. # For more date formats see https://gohugo.io/functions/format/
  18. dateFormat = "Jan 2, 2006"
  19. codePenUser = "someUser"
  20. [menu]
  21. [[menu.nav]]
  22. name = "Home"
  23. url = "/"
  24. weight = 1
  25. [[menu.nav]]
  26. name = "Blog"
  27. url = "/post/"
  28. weight = 2
  29. [[menu.nav]]
  30. name = "Tags"
  31. url = "/tags/"
  32. weight = 3
  33. [[menu.nav]]
  34. name = "About"
  35. url = "/about/"
  36. weight = 4
  37. [[menu.nav]]
  38. name = "RSS"
  39. url = "/index.xml"
  40. weight = 5