You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

113 lines
2.1 KiB
TOML

# -- 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 = "Blog"
weight = 10
[[main]]
name = "Posts"
parent = "Blog"
pageRef = "posts"
weight = 10
[[main]]
name = "Series"
parent = "Blog"
pageRef = "series"
weight = 50
[[main]]
name = "Tags"
parent = "Blog"
pageRef = "tags"
weight = 50
[[main]]
name = "Contact"
pre = "phone"
weight = 20
[[main]]
parent = "Contact"
pre = "email"
name = "Email"
url = "mailto:nickdumascoaching@proton.me"
weight = 10
[[main]]
parent = "Contact"
pre = "mastodon"
name = "Mastodon"
url = "https://fosstodon.org/@nickdumas"
weight = 10
[[main]]
name = "Office Hours"
pageRef = "services/office-hours"
weight = 60
[[main]]
name = "Personal Mentoring"
pageRef = "services/mentoring"
weight = 50
#[[main]]
# name = "Parent"
# weight = 20
# [[main]]
# name = "Projects"
# pageRef = "projects"
# weight = 20
#[[main]]
# name = "example sub-menu 2"
# parent = "Parent"
# pageRef = "posts"
# weight = 20
#[[subnavigation]]
# name = "An interesting topic"
# pageRef = "tags/interesting-topic"
# weight = 10
#[[subnavigation]]
# name = "My Awesome Category"
# pre = "github"
# pageRef = "categories/awesome"
# weight = 20
#[[main]]
# name = "Categories"
# pageRef = "categories"
# weight = 20
#[[main]]
# name = "Tags"
# pageRef = "tags"
# weight = 30
# -- 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.
5 months ago
[[footer]]
5 months ago
pre = "eye"
name = "Analytics"
url = "https://analytics.ndumas.com/ndumas.com"
5 months ago
weight = 50