1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- baseurl = "https://laradock.io/"
- languageCode = "en-us"
- publishDir = "../docs"
- title = "Laradock"
- theme = "hugo-material-docs"
- metadataformat = "yaml"
- canonifyurls = true
- uglyurls = true
- # Enable Google Analytics by entering your tracking id
- googleAnalytics = "UA-37514928-9"
- [params]
- # General information
- author = "Mahmoud Zalt"
- description = "Full PHP development environment for Docker."
- copyright = ""
- # Repository
- provider = ""
- repo_url = "https://github.com/laradock/laradock"
- version = ""
- logo = "images/logo.png"
- favicon = ""
- permalink = "#"
- # Custom assets
- custom_css = ["custom-style.css"]
- custom_js = []
- # Syntax highlighting theme
- highlight_css = ""
- [params.palette]
- primary = "deep-purple"
- accent = "purple"
- [params.font]
- text = "Doctarine"
- code = "Source Code Pro"
- [social]
- twitter = ""
- github = "laradock/laradock"
- email = "support@laradock.io"
- # ------- MENU START -----------------------------------------
- [[menu.main]]
- name = "1. Introduction"
- url = "introduction/"
- weight = 1
- [[menu.main]]
- name = "2. Getting Started"
- url = "getting-started/"
- weight = 2
- [[menu.main]]
- name = "3. Documentation"
- url = "documentation/"
- weight = 3
- [[menu.main]]
- name = "4. Help & Questions"
- url = "help/"
- weight = 4
- [[menu.main]]
- name = "5. Related Projects"
- url = "related-projects/"
- weight = 5
- [[menu.main]]
- name = "6. Contributing"
- url = "contributing/"
- weight = 6
- [[menu.main]]
- name = "7. License"
- url = "license/"
- weight = 7
- # ------- MENU END -----------------------------------------
- [blackfriday]
- smartypants = true
- fractions = true
- smartDashes = true
- plainIDAnchors = true
|