81 lines
2.0 KiB
TOML
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 = "Archives"
|
|
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 = "Categories"
|
|
url = "/categories/"
|
|
title = ""
|
|
weight = 2
|
|
[main.params]
|
|
icon = "fa-solid fa-folder-tree"
|
|
[[main]]
|
|
identifier = "collections"
|
|
parent = "archives"
|
|
name = "Collections"
|
|
url = "collections/"
|
|
weight = 3
|
|
[main.params]
|
|
icon = "fa-solid fa-layer-group"
|
|
[[main]]
|
|
identifier = "tags"
|
|
parent = "archives"
|
|
pre = ""
|
|
post = ""
|
|
name = "Tags"
|
|
url = "/tags/"
|
|
title = ""
|
|
weight = 4
|
|
[main.params]
|
|
icon = "fa-solid fa-tags"
|
|
|
|
[[main]]
|
|
identifier = "about"
|
|
name = "About"
|
|
url = "about/"
|
|
weight = 20
|
|
[main.params]
|
|
icon = "fa-solid fa-circle-info"
|
|
[[main]]
|
|
identifier = "friends"
|
|
parent = "about"
|
|
name = "Friends"
|
|
url = "/friends/"
|
|
weight = 5
|
|
[main.params]
|
|
icon = "fa-solid fa-link"
|
|
[[main]]
|
|
identifier = "resume"
|
|
parent = "about"
|
|
name = "About Me"
|
|
url = "/me/"
|
|
weight = 5
|
|
[main.params]
|
|
icon = "fa-solid fa-clipboard-user" |