config.toml 1.2 KB

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