summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md25
1 files changed, 24 insertions, 1 deletions
diff --git a/README.md b/README.md
index 04d9654..16e22b2 100644
--- a/README.md
+++ b/README.md
@@ -52,7 +52,30 @@ Hyde includes some customizable options, typically applied via classes on the `<
### 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