config.toml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. # For more styles see https://xyproto.github.io/splash/docs/all.html
  8. pygmentsCodefences = true
  9. pygmentsStyle = "algol"
  10. [taxonomies]
  11. tag = "tags"
  12. [permalinks]
  13. post = "/:filename/"
  14. [imaging]
  15. quality = 99
  16. [params]
  17. description = "An accessibility-friendly Hugo theme, ported from the [original Cupper](https://github.com/ThePacielloGroup/cupper) project."
  18. 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/)."
  19. # For more date formats see https://gohugo.io/functions/format/
  20. dateFormat = "Jan 2, 2006"
  21. codePenUser = "someUser"
  22. [menu]
  23. [[menu.nav]]
  24. name = "Home"
  25. url = "/"
  26. weight = 1
  27. [[menu.nav]]
  28. name = "Blog"
  29. url = "/post/"
  30. weight = 2
  31. [[menu.nav]]
  32. name = "Tags"
  33. url = "/tags/"
  34. weight = 3
  35. [[menu.nav]]
  36. name = "About"
  37. url = "/about/"
  38. weight = 4
  39. [[menu.nav]]
  40. name = "RSS"
  41. url = "/index.xml"
  42. weight = 5