1
0
mirror of https://github.com/osmarks/mycorrhiza.git synced 2024-12-12 05:20:26 +00:00

Add /help to the default header links

This commit is contained in:
Timur Ismagilov 2021-07-25 00:16:49 +05:00
parent 2603c56f4d
commit d2fdc6a29a

View File

@ -12,10 +12,10 @@ var HeaderLinks []HeaderLink
// SetDefaultHeaderLinks sets the header links to the default list of: home hypha, recent changes, hyphae list, random hypha. // SetDefaultHeaderLinks sets the header links to the default list of: home hypha, recent changes, hyphae list, random hypha.
func SetDefaultHeaderLinks() { func SetDefaultHeaderLinks() {
HeaderLinks = []HeaderLink{ HeaderLinks = []HeaderLink{
{"/", WikiName},
{"/recent-changes", "Recent changes"}, {"/recent-changes", "Recent changes"},
{"/list", "All hyphae"}, {"/list", "All hyphae"},
{"/random", "Random"}, {"/random", "Random"},
{"/help", "Help"},
} }
} }