config.toml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. katex = true
  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