config.toml 1.2 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. disqusShortname = "yourdiscussshortname"
  8. enableGitInfo = true
  9. [taxonomies]
  10. tag = "tags"
  11. [permalinks]
  12. post = "/:filename/"
  13. [imaging]
  14. quality = 99
  15. [params]
  16. description = "An accessibility-friendly Hugo theme, ported from the [original Cupper](https://github.com/ThePacielloGroup/cupper) project."
  17. homeMetaContent = "An accessibility-friendly Hugo theme, ported from the original 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. katex = true
  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