Add example for Sidebar menus
This commit is contained in:
parent
8bfa46de48
commit
6190b663b6
25
README.md
25
README.md
|
@ -52,7 +52,30 @@ Hyde includes some customizable options, typically applied via classes on the `<
|
||||||
|
|
||||||
### Sidebar menu
|
### Sidebar menu
|
||||||
|
|
||||||
Create a list of nav links in the sidebar by assigning "menu=main" in the front matter.
|
Create a list of nav links in the sidebar by assigning "menu=main" in the front matter, like so:
|
||||||
|
|
||||||
|
**TOML**
|
||||||
|
```toml
|
||||||
|
theme = "hyde"
|
||||||
|
|
||||||
|
[Menus]
|
||||||
|
main = [
|
||||||
|
{Name = "Github", URL = "https://github.com/username/"},
|
||||||
|
{Name = "LinkedIn", URL = "https://www.linkedin.com/in/username/"}
|
||||||
|
]
|
||||||
|
```
|
||||||
|
|
||||||
|
**YAML**
|
||||||
|
```yaml
|
||||||
|
theme: "hyde"
|
||||||
|
|
||||||
|
Menus:
|
||||||
|
main:
|
||||||
|
- Name: "Github"
|
||||||
|
URL: "https://github.com/username/"
|
||||||
|
- Name: "LinkedIn"
|
||||||
|
URL: "https://www.linkedin.com/in/username/"
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
### Sticky sidebar content
|
### Sticky sidebar content
|
||||||
|
|
Loading…
Reference in New Issue