config.toml 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. baseURL = 'http://cloudera.github.io/hue/latest/' # Note: also in [params]
  2. languageCode = "en-us"
  3. title = "Hue Documentation"
  4. # Change the default theme to be use when building the site with Hugo
  5. theme = "hugo-theme-learn"
  6. # For search functionality
  7. [outputs]
  8. home = [ "HTML", "RSS", "JSON"]
  9. [params]
  10. # For logo and favicon partials
  11. baseURL = 'http://cloudera.github.io/hue/latest/'
  12. # Prefix URL to edit current page. Will display an "Edit this page" button on top right hand corner of every page.
  13. # Useful to give opportunity to people to create merge request for your doc.
  14. editURL = "https://github.com/cloudera/hue/blob/master/docs/docs-site/content/"
  15. # Author of the site, will be used in meta information
  16. author = ""
  17. # Description of the site, will be used in meta information
  18. description = ""
  19. # Shows a checkmark for visited pages on the menu
  20. showVisitedLinks = false
  21. # Disable search function. It will hide search bar
  22. disableSearch = false
  23. # Javascript and CSS cache are automatically busted when new version of site is generated.
  24. # Set this to true to disable this behavior (some proxies don't handle well this optimization)
  25. disableAssetsBusting = false
  26. # Set this to true to disable copy-to-clipboard button for inline code.
  27. disableInlineCopyToClipBoard = false
  28. # A title for shortcuts in menu is set by default. Set this to true to disable it.
  29. disableShortcutsTitle = false
  30. # When using mulitlingual website, disable the switch language button.
  31. disableLanguageSwitchingButton = false
  32. # Hide breadcrumbs in the header and only show the current page title
  33. disableBreadcrumb = false
  34. # Hide Next and Previous page buttons normally displayed full height beside content
  35. disableNextPrev = false
  36. # Order sections in menu by "weight" or "title". Default to "weight"
  37. ordersectionsby = "weight"
  38. # Change default color scheme with a variant one. Can be "red", "blue", "green".
  39. themeVariant = "hue"
  40. [[menu.shortcuts]]
  41. name = "<i class='fab fa-fw fa-github'></i> GitHub"
  42. identifier = "ds"
  43. url = "https://github.com/cloudera/hue"
  44. weight = 10
  45. [[menu.shortcuts]]
  46. name = "<i class='fas fa-fw fa-play'></i> Demo"
  47. url = "http://demo.gethue.com"
  48. weight = 11
  49. [[menu.shortcuts]]
  50. name = "<i class='fas fa-fw fa-bookmark'></i> gethue.com"
  51. identifier = "hugodoc"
  52. url = "http://gethue.com"
  53. weight = 20