config.toml 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. # pygmentsCodefences = true
  8. # pygmentsCodefencesGuessSyntax = true
  9. # For more styles see https://xyproto.github.io/splash/docs/all.html
  10. # pygmentsStyle = "pygments"
  11. [taxonomies]
  12. tag = "tags"
  13. [permalinks]
  14. post = "/:filename/"
  15. [menu]
  16. [[menu.main]]
  17. name = "Home"
  18. url = "/"
  19. weight = 1
  20. [[menu.main]]
  21. name = "Blog"
  22. url = "/post/"
  23. weight = 2
  24. [[menu.main]]
  25. name = "Tags"
  26. url = "/tags/"
  27. weight = 3
  28. [[menu.main]]
  29. name = "About"
  30. url = "/about/"
  31. weight = 4
  32. [[menu.main]]
  33. name = "RSS"
  34. url = "/index.xml"
  35. weight = 5
  36. [params]
  37. description = "Documentation for the **Cupper** documentation builder, built with **Cupper** itself."
  38. footerText = "Made with [Hugo](https://gohugo.io/) & TODO"
  39. hideFooter = false
  40. # Keep?
  41. codePenUser = "Heydon"
  42. # TODO link to date format docs page
  43. dateFormat = "Jan 2, 2006"