config.toml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. baseurl = "https://example.org/"
  2. languageCode = "en-us"
  3. title = "Material Docs"
  4. theme = "hugo-material-docs"
  5. metadataformat = "yaml"
  6. canonifyurls = true
  7. # Enable Google Analytics by entering your tracking id
  8. googleAnalytics = ""
  9. [params]
  10. # General information
  11. author = "Digitalcraftsman"
  12. description = "A material design theme for documentations."
  13. copyright = "Released under the MIT license"
  14. # Repository
  15. provider = "GitHub"
  16. repo_url = "https://github.com/digitalcraftsman/hugo-material-docs"
  17. version = "1.0.0"
  18. logo = "images/logo.png"
  19. favicon = ""
  20. permalink = "#"
  21. # Custom assets
  22. custom_css = []
  23. custom_js = []
  24. # Syntax highlighting theme
  25. highlight_css = ""
  26. [params.palette]
  27. primary = "red"
  28. accent = "teal"
  29. [params.font]
  30. text = "Ubuntu"
  31. code = "Ubuntu Mono"
  32. [social]
  33. twitter = ""
  34. github = "digitalcraftsman"
  35. email = "hello@email.com"
  36. [[menu.main]]
  37. name = "Material"
  38. url = "/"
  39. weight = 0
  40. [[menu.main]]
  41. name = "Getting started"
  42. url = "getting-started/"
  43. weight = 10
  44. [[menu.main]]
  45. name = "Adding content"
  46. url = "adding-content/"
  47. weight = 20
  48. [[menu.main]]
  49. name = "Roadmap"
  50. url = "roadmap/"
  51. weight = 30
  52. [[menu.main]]
  53. name = "License"
  54. url = "license/"
  55. weight = 40
  56. [blackfriday]
  57. smartypants = true
  58. fractions = true
  59. smartDashes = true
  60. plainIDAnchors = true