config.toml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. baseUrl = 'https://docs.gethue.com/'
  2. languageCode = "en-us"
  3. title = "Hue SQL Assistant 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. editURL = "https://github.com/cloudera/hue/blob/master/docs/docs-site/content/"
  13. # Author of the site, will be used in meta information
  14. author = ""
  15. # Description of the site, will be used in meta information
  16. description = ""
  17. # Shows a checkmark for visited pages on the menu
  18. showVisitedLinks = false
  19. # Disable search function. It will hide search bar
  20. disableSearch = false
  21. # Javascript and CSS cache are automatically busted when new version of site is generated.
  22. # Set this to true to disable this behavior (some proxies don't handle well this optimization)
  23. disableAssetsBusting = true
  24. # Set this to true to disable copy-to-clipboard button for inline code.
  25. disableInlineCopyToClipBoard = false
  26. # A title for shortcuts in menu is set by default. Set this to true to disable it.
  27. disableShortcutsTitle = false
  28. # When using mulitlingual website, disable the switch language button.
  29. disableLanguageSwitchingButton = false
  30. # Hide breadcrumbs in the header and only show the current page title
  31. disableBreadcrumb = false
  32. # Hide Next and Previous page buttons normally displayed full height beside content
  33. disableNextPrev = true
  34. # Order sections in menu by "weight" or "title". Default to "weight"
  35. ordersectionsby = "weight"
  36. # Change default color scheme with a variant one. Can be "red", "blue", "green".
  37. themeVariant = "hue"
  38. [[menu.shortcuts]]
  39. name = "<i class='fab fa-fw fa-github'></i> GitHub"
  40. identifier = "ds"
  41. url = "https://github.com/cloudera/hue"
  42. weight = 10
  43. [[menu.shortcuts]]
  44. name = "<i class='fas fa-fw fa-play'></i> Demo"
  45. url = "http://demo.gethue.com"
  46. weight = 11
  47. [[menu.shortcuts]]
  48. name = "<i class='fas fa-fw fa-bookmark'></i> gethue.com"
  49. identifier = "hugodoc"
  50. url = "http://gethue.com"
  51. weight = 20