config.toml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. baseURL = "https://netboot.xyz/"
  2. languageCode = "en-us"
  3. title = "netboot.xyz"
  4. theme = "hugo-theme-learn"
  5. [outputs]
  6. home = ["HTML", "RSS", "JSON" ]
  7. section = ["HTML"]
  8. [Params]
  9. # Prefix URL to edit current page. Will display an "Edit this page" button on top right hand corner of every page.
  10. # Useful to give opportunity to people to create merge request for your doc.
  11. # See the config.toml file from this documentation site to have an example.
  12. editURL = ""
  13. # Author of the site, will be used in meta information
  14. author = "netboot.xyz"
  15. # Description of the site, will be used in meta information
  16. description = "netboot.xyz enables you to PXE boot Operating System installers and utilities from a simple to use menu based on the iPXE project."
  17. # tagline
  18. tagline = "pxe boot all the things"
  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 = true
  30. # When using mulitlingual website, disable the switch language button.
  31. disableLanguageSwitchingButton = false
  32. # Order sections in menu by "weight" or "title". Default to "weight"
  33. ordersectionsby = "weight"
  34. # Change default color scheme with a variant one. Can be "red", "blue", "green".
  35. themeVariant = "blue"
  36. [[menu.shortcuts]]
  37. name = "Blog"
  38. identifier = "blog"
  39. url = "https://blog.netboot.xyz/"
  40. weight = 20
  41. [[menu.shortcuts]]
  42. name = "Discord"
  43. identifier = "discord"
  44. url = "https://discord.gg/An6PA2a"
  45. weight = 30
  46. [[menu.shortcuts]]
  47. name = "Discussions"
  48. identifier = "discussions"
  49. url = "https://github.com/netbootxyz/netboot.xyz/discussions"
  50. weight = 40