blowfish/exampleSite/config/_default/menus.en.toml

92 lines
1.8 KiB
TOML
Raw Normal View History

2022-09-10 14:05:37 -05:00
# -- Main Menu --
# The main menu is displayed in the header at the top of the page.
# Acceptable parameters are name, pageRef, page, url, title, weight.
#
# The simplest menu configuration is to provide:
# name = The name to be displayed for this menu link
# pageRef = The identifier of the page or section to link to
#
# By default the menu is ordered alphabetically. This can be
# overridden by providing a weight value. The menu will then be
# ordered by weight from lowest to highest.
[[main]]
name = "Docs"
pageRef = "docs"
weight = 10
2023-07-29 07:52:34 -05:00
[[main]]
name = "Shortcodes"
pageRef = "docs/shortcodes"
weight = 15
2023-04-29 09:56:55 -05:00
2024-01-24 15:49:12 -06:00
[[main]]
name = "Examples"
weight = 20
2022-09-10 14:05:37 -05:00
[[main]]
name = "Samples"
2024-01-24 15:49:12 -06:00
parent = "Examples"
pageRef = "samples"
2023-07-29 07:52:34 -05:00
weight = 16
[[main]]
name = "Showcase"
2023-07-29 07:52:34 -05:00
parent = "Examples"
pageRef = "examples"
weight = 30
[[main]]
2023-04-29 09:56:55 -05:00
name = "Recipes"
2023-07-29 07:52:34 -05:00
parent = "Examples"
2023-04-29 09:56:55 -05:00
pageRef = "guides"
weight = 40
2022-09-11 11:20:31 -05:00
2022-11-13 09:37:06 -06:00
[[main]]
2023-04-29 09:56:55 -05:00
name = "Users"
pageRef = "users"
weight = 90
2024-01-24 15:49:12 -06:00
[[main]]
name = "Merch"
url = "https://www.teepublic.com/user/blowfish-store/t-shirts"
weight = 100
2022-11-13 09:37:06 -06:00
#[[main]]
# name = "Test"
# pageRef = "pagTest"
# weight = 1000
2022-09-10 14:05:37 -05:00
[[main]]
identifier = "twitter"
2023-11-02 17:51:09 -05:00
pre = "x-twitter"
url = "https://twitter.com/burufugu"
2023-04-29 09:56:55 -05:00
weight = 200
2022-11-19 18:17:56 -06:00
2024-01-24 15:49:12 -06:00
#[[main]]
# identifier = "mastodon"
# pre = "mastodon"
# weight = 300
# url = "https://masto.ai/@blowfish"
2022-11-19 18:17:56 -06:00
[[main]]
identifier = "github"
pre = "github"
url = "https://github.com/nunocoracao/blowfish"
2023-04-29 09:56:55 -05:00
weight = 400
2022-11-19 18:17:56 -06:00
2022-09-10 14:05:37 -05:00
# -- Footer Menu --
# The footer menu is displayed at the bottom of the page, just before
# the copyright notice. Configure as per the main menu above.
[[footer]]
name = "Tags"
pageRef = "tags"
2022-10-15 17:14:35 -05:00
weight = 10
[[footer]]
name = "Authors"
pageRef = "authors"
2023-07-29 07:52:34 -05:00
weight = 20