Files
FlareBlog/config/_default/menus.zh-cn.toml
2024-03-13 04:48:32 -04:00

81 lines
2.0 KiB
TOML

# -------------------------------------------------------------------------------------
# Menu Configuration
# See: https://fixit.lruihao.cn/documentation/basics/#menu-configuration
# -------------------------------------------------------------------------------------
[[main]]
identifier = "archives"
parent = ""
# you can add extra information before the name (HTML format is supported), such as icons
pre = ""
# you can add extra information after the name (HTML format is supported), such as icons
post = ""
name = "归档"
url = "/archives/"
# title will be shown when you hover on this menu link
title = ""
weight = 1
# FixIt 0.2.14 | NEW add user-defined content to menu items
[main.params]
# add css class to a specific menu item
class = ""
# whether set as a draft menu item whose function is similar to a draft post/page
draft = false
# FixIt 0.2.16 | NEW add fontawesome icon to a specific menu item
icon = "fa-solid fa-archive"
# FixIt 0.2.16 | NEW set menu item type, optional values: ["mobile", "desktop"]
type = ""
[[main]]
identifier = "categories"
parent = "archives"
pre = ""
post = ""
name = "分类"
url = "/categories/"
title = ""
weight = 2
[main.params]
icon = "fa-solid fa-folder-tree"
[[main]]
identifier = "collections"
parent = "archives"
name = "合集"
url = "collections/"
weight = 3
[main.params]
icon = "fa-solid fa-layer-group"
[[main]]
identifier = "tags"
parent = "archives"
pre = ""
post = ""
name = "标签"
url = "/tags/"
title = ""
weight = 4
[main.params]
icon = "fa-solid fa-tags"
[[main]]
identifier = "about"
name = "关于"
url = "about/"
weight = 20
[main.params]
icon = "fa-solid fa-circle-info"
[[main]]
identifier = "friends"
parent = "about"
name = "友链"
url = "/friends/"
weight = 5
[main.params]
icon = "fa-solid fa-link"
[[main]]
identifier = "resume"
parent = "about"
name = "我的简历"
url = "/resume/"
weight = 5
[main.params]
icon = "fa-solid fa-newspaper"