diff options
| author | Anoduck <9925396+anoduck@users.noreply.github.com> | 2024-09-08 14:54:54 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-08 14:54:54 +0000 |
| commit | d2a0fd14e05ef6b0b9fca454f8996faf86f94204 (patch) | |
| tree | 242f822be67c179618f1e2aabcea60c172f4f6e0 /config/_default/menus | |
Initial commit
Diffstat (limited to 'config/_default/menus')
| -rw-r--r-- | config/_default/menus/menus.en.toml | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/config/_default/menus/menus.en.toml b/config/_default/menus/menus.en.toml new file mode 100644 index 0000000..896d78a --- /dev/null +++ b/config/_default/menus/menus.en.toml @@ -0,0 +1,51 @@ +[[main]] + name = "Home" + pageRef = "/" + weight = 10 + +[[main]] + name = "Tags" + pageRef = "/tags" + weight = 20 + +[[social]] + name = "LinkedIn" + pre = "fab linkedin" + url = "https://linkedin.com/" + weight = 10 + +[[social]] + name = "GitHub" + pre = "fab fa-github" + url = "https://github.com/" + weight = 20 + +[[social]] + name = "Medium" + pre = "fab medium" + url = "https://medium.com/" + weight = 30 + +# toml-docs-start sample-navigation +[[sample]] + name = "Blog" + pageRef = "/blog/" + weight = 10 + +[[sample]] + name = "Projects" + pageRef = "/projects/" + weight = 20 + +[[sample]] + name = "Sample project" + pageRef = "/projects/sample-project/" + parent = "Projects" + weight = 1 + +[[sample]] + name = "Another project" + pageRef = "/projects/another-project/" + parent = "Projects" + weight = 2 +# toml-docs-end sample-navigation
\ No newline at end of file |
