diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-07-31 22:18:45 +0200 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-07-31 22:18:45 +0200 |
commit | b2c6e1a650582707a20513d159e270fe87bd5aa6 (patch) | |
tree | a5349affc2c97db5d71409ba1809a0f08c8c3f8b /config.toml | |
parent | Add dark theme toggle functionality (diff) | |
download | baitinq.ml-b2c6e1a650582707a20513d159e270fe87bd5aa6.tar.gz baitinq.ml-b2c6e1a650582707a20513d159e270fe87bd5aa6.tar.bz2 baitinq.ml-b2c6e1a650582707a20513d159e270fe87bd5aa6.zip |
Place submenus in the correct order
Diffstat (limited to 'config.toml')
-rw-r--r-- | config.toml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config.toml b/config.toml index 00b6f92..71bdd68 100644 --- a/config.toml +++ b/config.toml @@ -40,15 +40,15 @@ theme = "researcher" [[menu.main]] name = "Resume" url = "/cv.pdf" - weight = 1 + weight = 4 [[menu.main]] name = "Projects" url = "/projects" - weight = 1 + weight = 2 [[menu.main]] name = "Blog" url = "/blog" - weight = 1 + weight = 3 [permalinks] blog = "/posts/:filename" |