Make menu entries explicit
This commit is contained in:
parent
ff64ca341b
commit
fa8af73671
24
config.toml
24
config.toml
|
@ -39,9 +39,29 @@ copyright = "This work is licensed under a Creative Commons Attribution-ShareAli
|
||||||
name = "Reddit"
|
name = "Reddit"
|
||||||
url = "https://old.reddit.com/u/djbon2112"
|
url = "https://old.reddit.com/u/djbon2112"
|
||||||
|
|
||||||
[menu]
|
[menus]
|
||||||
[[menu.main]]
|
[[menus.main]]
|
||||||
identifier = "home"
|
identifier = "home"
|
||||||
name = "Home"
|
name = "Home"
|
||||||
url = "/"
|
url = "/"
|
||||||
weight = 1
|
weight = 1
|
||||||
|
[[menus.main]]
|
||||||
|
identifier = "welcome"
|
||||||
|
name = "Welcome"
|
||||||
|
url = "/welcome/"
|
||||||
|
weight = 2
|
||||||
|
[[menus.main]]
|
||||||
|
identifier = "legal"
|
||||||
|
name = "Legal"
|
||||||
|
url = "/legal/"
|
||||||
|
weight = 3
|
||||||
|
[[menus.about]]
|
||||||
|
identifier = "cv"
|
||||||
|
name = "My CV"
|
||||||
|
url = "/cv/"
|
||||||
|
weight = 1
|
||||||
|
[[menus.about]]
|
||||||
|
identifier = "hardware"
|
||||||
|
name = "My Hardware"
|
||||||
|
url = "/hardware/"
|
||||||
|
weight = 2
|
||||||
|
|
|
@ -2,7 +2,6 @@
|
||||||
Categories = []
|
Categories = []
|
||||||
Tags = []
|
Tags = []
|
||||||
date = "2016-08-21T23:37:49-04:00"
|
date = "2016-08-21T23:37:49-04:00"
|
||||||
menu = "main"
|
|
||||||
title = "CV"
|
title = "CV"
|
||||||
|
|
||||||
+++
|
+++
|
||||||
|
|
|
@ -2,7 +2,6 @@
|
||||||
Categories = []
|
Categories = []
|
||||||
Tags = []
|
Tags = []
|
||||||
date = "2024-02-13T00:00:00-05:00"
|
date = "2024-02-13T00:00:00-05:00"
|
||||||
menu = "main"
|
|
||||||
title = "Hardware"
|
title = "Hardware"
|
||||||
|
|
||||||
+++
|
+++
|
||||||
|
|
|
@ -2,7 +2,6 @@
|
||||||
Categories = []
|
Categories = []
|
||||||
Tags = []
|
Tags = []
|
||||||
date = "2016-08-21T23:37:49-04:00"
|
date = "2016-08-21T23:37:49-04:00"
|
||||||
menu = "main"
|
|
||||||
title = "Legal"
|
title = "Legal"
|
||||||
|
|
||||||
+++
|
+++
|
||||||
|
|
|
@ -3,7 +3,6 @@ Categories = []
|
||||||
Description = "Welcome to the new blog!"
|
Description = "Welcome to the new blog!"
|
||||||
Tags = []
|
Tags = []
|
||||||
date = "2016-08-21T23:37:49-04:00"
|
date = "2016-08-21T23:37:49-04:00"
|
||||||
menu = "main"
|
|
||||||
title = "Welcome"
|
title = "Welcome"
|
||||||
|
|
||||||
+++
|
+++
|
||||||
|
|
Loading…
Reference in New Issue