config.toml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. baseurl = "https://laradock.io/"
  2. languageCode = "en-us"
  3. publishDir = "../docs"
  4. title = "Laradock"
  5. theme = "hugo-material-docs"
  6. metadataformat = "yaml"
  7. canonifyurls = true
  8. uglyurls = true
  9. # Enable Google Analytics by entering your tracking id
  10. googleAnalytics = "UA-37514928-9"
  11. [params]
  12. # General information
  13. author = "Mahmoud Zalt"
  14. description = "Full PHP development environment for Docker."
  15. copyright = ""
  16. # Repository
  17. provider = ""
  18. repo_url = ""
  19. version = ""
  20. logo = "images/logo.png"
  21. favicon = ""
  22. permalink = "#"
  23. # Custom assets
  24. custom_css = []
  25. custom_js = []
  26. # Syntax highlighting theme
  27. highlight_css = ""
  28. [params.palette]
  29. primary = "deep-purple"
  30. accent = "purple"
  31. [params.font]
  32. text = "Doctarine"
  33. code = "Source Code Pro"
  34. [social]
  35. twitter = ""
  36. github = "laradock/laradock"
  37. email = ""
  38. # ------- MENU START -----------------------------------------
  39. [[menu.main]]
  40. name = "Introduction"
  41. url = "introduction/"
  42. weight = 1
  43. [[menu.main]]
  44. name = "Getting Started"
  45. url = "getting-started/"
  46. weight = 2
  47. [[menu.main]]
  48. name = "Documentation"
  49. url = "documentation/"
  50. weight = 3
  51. [[menu.main]]
  52. name = "Guides"
  53. url = "guides/"
  54. weight = 4
  55. [[menu.main]]
  56. name = "Help & Questions"
  57. url = "help/"
  58. weight = 5
  59. [[menu.main]]
  60. name = "Related Projects"
  61. url = "related-projects/"
  62. weight = 6
  63. [[menu.main]]
  64. name = "Contributing"
  65. url = "contributing/"
  66. weight = 7
  67. [[menu.main]]
  68. name = "License"
  69. url = "license/"
  70. weight = 8
  71. # ------- MENU END -----------------------------------------
  72. [blackfriday]
  73. smartypants = true
  74. fractions = true
  75. smartDashes = true
  76. plainIDAnchors = true