config.toml 2.4 KB

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