diff options
author | Ngô Ngọc Đức Huy <huyngo@disroot.org> | 2021-05-30 00:10:57 +0700 |
---|---|---|
committer | Ngô Ngọc Đức Huy <huyngo@disroot.org> | 2021-05-30 00:10:57 +0700 |
commit | 36944436a976fec36b97fcff76e940e5e3676861 (patch) | |
tree | 221ef8a61b851dc583c27fb995fbf2642e963d35 /config.toml | |
parent | 73d8c01b2c6a80353125d96b628b57671a3367ac (diff) | |
download | blog-36944436a976fec36b97fcff76e940e5e3676861.tar.gz |
Add Home to menu
Diffstat (limited to 'config.toml')
-rw-r--r-- | config.toml | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/config.toml b/config.toml index 7a4626d..4299d1b 100644 --- a/config.toml +++ b/config.toml @@ -19,12 +19,18 @@ about = "À propos" languageName = "Français" [[languages.fr.menu.main]] +identifier = "home" +name = "Accueil" +url = "/" +weight = 1 + +[[languages.fr.menu.main]] identifier = "about" name = "À propos" url = "/about/" -weight = 1 +weight = 2 -[[menu.main]] +[[languages.fr.menu.main]] identifier = "works" name = "Travail" url = "/works/" @@ -38,10 +44,16 @@ weight = 11 [menu] [[menu.main]] +identifier = "home" +name = "Home" +url = "/" +weight = 1 + +[[menu.main]] identifier = "about" name = "About" url = "/about/" -weight = 1 +weight = 2 [[menu.main]] identifier = "works" |