config.toml 2.5 KB

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