Some checks are pending
Install / Cargo install on ubuntu-latest (push) Waiting to run
43 lines
696 B
Markdown
43 lines
696 B
Markdown
# Menu Items config settings
|
|
|
|
## menu_items.toml
|
|
|
|
```toml
|
|
[[web_menu_items]]
|
|
# ~home text part will be removed, it is to indicate it is a home link
|
|
text = "~home"
|
|
url = "/"
|
|
roles = []
|
|
|
|
[[web_menu_items]]
|
|
typ = "icon"
|
|
srctyp = "mdbook"
|
|
text = "DocServer"
|
|
url = "/docserver"
|
|
roles = ["dev"]
|
|
[[web_menu_items.items]]
|
|
typ = "icon"
|
|
srctyp = "mdbook"
|
|
text = "Documentation"
|
|
url = "/docserver"
|
|
roles = ["dev"]
|
|
[[web_menu_items.items]]
|
|
typ = "icon"
|
|
srctyp = "source"
|
|
text = "Source Docs"
|
|
url = "/srcdocserver"
|
|
roles = ["dev"]
|
|
[[web_menu_items.items]]
|
|
typ = "icon"
|
|
srctyp = "git"
|
|
text = "Git Repo"
|
|
url = "docserver"
|
|
roles = ["dev"]
|
|
|
|
[[web_menu_items]]
|
|
text = "Users"
|
|
url = "/users"
|
|
roles = ["admin"]
|
|
```
|
|
|