-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnav.toml
More file actions
35 lines (29 loc) · 684 Bytes
/
nav.toml
File metadata and controls
35 lines (29 loc) · 684 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
###
# Structure of the navigation menu in the sidebar
#
# [[nav]] is required and defines the main voice menu
# [[nav.sub]] is optional and defines the second level voices
#
# - `name` is the link's name displayed in the navigation menu
# - `path` is the site's relative link or the full external link associated to `name`
#
[[nav]]
name = "Home"
path = "/"
[[nav]]
name = "Blog"
path = "/blog/"
haschild = true # Blog is a section with submenu navigation items
# sub-items of the Blog section
[[nav.sub]]
name = "Categories"
path = "/categories/"
[[nav.sub]]
name = "Tags"
path = "/tags/"
[[nav]]
name = "About"
path = "/about/"
[[nav]]
name = "Gallery"
path = "/gallery/"