config.toml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. baseURL = "https://example.com"
  2. languageCode = "en-us"
  3. title = "Cupper"
  4. theme = "cupper-hugo-theme"
  5. googleAnalytics = "UA-123456789-1"
  6. # Uncomment below to enable syntax highlighting
  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. [menu]
  15. [[menu.nav]]
  16. name = "Home"
  17. url = "/"
  18. weight = 1
  19. [[menu.nav]]
  20. name = "Blog"
  21. url = "/post/"
  22. weight = 2
  23. [[menu.nav]]
  24. name = "Tags"
  25. url = "/tags/"
  26. weight = 3
  27. [[menu.nav]]
  28. name = "About"
  29. url = "/about/"
  30. weight = 4
  31. [[menu.nav]]
  32. name = "RSS"
  33. url = "/index.xml"
  34. weight = 5
  35. [params]
  36. # description = "An accessibility-friendly Hugo theme, ported from the [original Cupper](https://github.com/ThePacielloGroup/cupper) project."
  37. 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/)."
  38. # For more date formats see https://gohugo.io/functions/format/
  39. dateFormat = "Jan 2, 2006"
  40. codePenUser = "TODO"