config.toml 2.3 KB

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