config.toml 1.2 KB

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