hugo-theme-relearn/exampleSite/content/configuration/sidebar/shortcutmenu/_index.en.md

159 lines
5.6 KiB
Markdown
Raw Normal View History

+++
2024-09-29 21:48:56 +00:00
description = "Add additional shortcut links to the sidebar"
options = ["disableShortcutsTitle"]
2024-09-29 21:48:56 +00:00
title = "Shortcut Menu"
2024-09-21 11:05:58 +00:00
weight = 5
+++
2017-08-20 15:10:29 +00:00
2024-09-29 21:48:56 +00:00
The sidebar contains the navigation menu of your content files but you can also add additional menu entries or shortcuts below the navigation menu.
2017-08-20 15:10:29 +00:00
2024-10-06 14:19:13 +00:00
Be sure to use the `pageRef` property instead of `url` for all links internal to your site. You can read more about [Hugo's menu configuration](https://gohugo.io/content-management/menus/#define-in-site-configuration) in its documenation.
2017-08-20 15:10:29 +00:00
2024-09-29 21:48:56 +00:00
## Title
2017-08-20 15:10:29 +00:00
2024-10-06 18:37:18 +00:00
{{% badge style="cyan" icon="gears" title=" " %}}Option{{% /badge %}} By default, the shortcut menu is preceded by a title ("_More_" in the english translation). This title can be disabled by setting `disableShortcutsTitle=true`. However, if you want to keep the title but change its value, it can be overridden by changing your local i18n translation string configuration.
2024-09-29 21:48:56 +00:00
For example, in your local `i18n/en.toml` file, add the following content
````toml {title="en.toml"}
[Shortcuts-Title]
other = "Other Great Stuff"
````
## Single Language Example
Edit the `hugo.toml` and add a `[[menu.shortcuts]]` entry for each link your want to add.
2017-08-20 15:10:29 +00:00
2024-03-02 10:04:52 +00:00
{{< multiconfig file=hugo >}}
[[menu.shortcuts]]
2024-10-06 14:19:13 +00:00
name = "<i class='fa-fw fab fa-github'></i> GitHub repo"
identifier = "ds"
url = "https://github.com/McShelby/hugo-theme-relearn"
weight = 10
[[menu.shortcuts]]
2024-10-06 14:19:13 +00:00
name = "<i class='fa-fw fas fa-camera'></i> Showcases"
pageRef = "/showcase"
weight = 11
[[menu.shortcuts]]
2024-10-06 14:19:13 +00:00
name = "<i class='fa-fw fas fa-bookmark'></i> Hugo Documentation"
identifier = "hugodoc"
url = "https://gohugo.io/"
weight = 20
[[menu.shortcuts]]
2024-10-06 14:19:13 +00:00
name = "<i class='fa-fw fas fa-bullhorn'></i> Credits"
pageRef = "/more/credits"
weight = 30
2021-10-24 09:53:09 +00:00
[[menu.shortcuts]]
2024-10-06 14:19:13 +00:00
name = "<i class='fa-fw fas fa-tags'></i> Tags"
pageRef = "/tags"
weight = 40
2024-03-02 10:04:52 +00:00
{{< /multiconfig >}}
2017-08-20 15:10:29 +00:00
2024-09-29 21:48:56 +00:00
## Multilingual Example
2017-08-20 15:10:29 +00:00
When using a multilingual website, you can set different menus for each language. In the `hugo.toml` file, prefix your menu configuration by `Languages.<language-id>`.
2017-08-20 15:10:29 +00:00
2024-03-02 10:04:52 +00:00
{{< multiconfig file=hugo >}}
[languages]
[languages.en]
title = "Hugo Relearn Theme"
2021-10-24 09:53:09 +00:00
weight = 1
languageName = "English"
[languages.en.params]
landingPageName = "<i class='fa-fw fas fa-home'></i> Home"
2021-10-24 09:53:09 +00:00
[[languages.en.menu.shortcuts]]
name = "<i class='fa-fw fab fa-github'></i> GitHub repo"
2021-10-24 09:53:09 +00:00
identifier = "ds"
url = "https://github.com/McShelby/hugo-theme-relearn"
weight = 10
[[languages.en.menu.shortcuts]]
name = "<i class='fa-fw fas fa-camera'></i> Showcases"
2024-10-06 14:19:13 +00:00
pageRef = "/showcase"
2021-10-24 09:53:09 +00:00
weight = 11
[[languages.en.menu.shortcuts]]
name = "<i class='fa-fw fas fa-bookmark'></i> Hugo Documentation"
2021-10-24 09:53:09 +00:00
identifier = "hugodoc"
url = "https://gohugo.io/"
weight = 20
[[languages.en.menu.shortcuts]]
name = "<i class='fa-fw fas fa-bullhorn'></i> Credits"
2024-10-06 14:19:13 +00:00
pageRef = "/more/credits"
2021-10-24 09:53:09 +00:00
weight = 30
[[languages.en.menu.shortcuts]]
name = "<i class='fa-fw fas fa-tags'></i> Tags"
2024-10-06 14:19:13 +00:00
pageRef = "/tags"
2021-10-24 09:53:09 +00:00
weight = 40
[languages.pir]
title = "Cap'n Hugo Relearrrn Theme"
2021-10-24 09:53:09 +00:00
weight = 1
2024-09-29 21:57:23 +00:00
languageName = "Arrr! Pirrratish"
[languages.pir.params]
landingPageName = "<i class='fa-fw fas fa-home'></i> Arrr! Home"
2021-10-24 09:53:09 +00:00
[[languages.pir.menu.shortcuts]]
name = "<i class='fa-fw fab fa-github'></i> GitHub repo"
2021-10-24 09:53:09 +00:00
identifier = "ds"
url = "https://github.com/McShelby/hugo-theme-relearn"
weight = 10
[[languages.pir.menu.shortcuts]]
name = "<i class='fa-fw fas fa-camera'></i> Showcases"
2024-10-06 14:19:13 +00:00
pageRef = "/showcase"
2021-10-24 09:53:09 +00:00
weight = 11
[[languages.pir.menu.shortcuts]]
name = "<i class='fa-fw fas fa-bookmark'></i> Cap'n Hugo Documentat'n"
2021-10-24 09:53:09 +00:00
identifier = "hugodoc"
url = "https://gohugo.io/"
weight = 20
[[languages.pir.menu.shortcuts]]
name = "<i class='fa-fw fas fa-bullhorn'></i> Crrredits"
2024-10-06 14:19:13 +00:00
pageRef = "/more/credits"
2021-10-24 09:53:09 +00:00
weight = 30
[[languages.pir.menu.shortcuts]]
name = "<i class='fa-fw fas fa-tags'></i> Arrr! Tags"
2024-10-06 14:19:13 +00:00
pageRef = "/tags"
2021-10-24 09:53:09 +00:00
weight = 40
2024-03-02 10:04:52 +00:00
{{< /multiconfig >}}
2017-08-20 15:10:29 +00:00
2024-10-06 14:19:13 +00:00
## How to Display Pages Only in the Shortcuts Menu
2024-09-29 21:48:56 +00:00
If you have shortcuts to pages inside of your project and you don't want them to show up in your navigation menu, you have two choices:
2024-10-06 18:52:53 +00:00
1. Make the page file for the shortcut a [headless branch bundle](https://gohugo.io/content-management/page-bundles/#headless-bundle) (contained in its own subdirectory and called `_index.md`) and add the following front matter configuration to the file (see exampleSite's `content/showcase/_index.en.md`). This causes its content to **not** be contained in the sitemap.
2024-10-06 18:37:18 +00:00
{{< multiconfig fm=true file="content/showcase/_index.en.md" >}}
title = "Showcase"
[_build]
render = "always"
list = "never"
publishResources = true
2024-03-02 10:04:52 +00:00
{{< /multiconfig >}}
2024-10-06 18:52:53 +00:00
2. Store the page file for the shortcut below a parent headless branch bundle and add the following front matter to he **parent** (see exampleSite's `content/more/_index.en.md`). **Don't give this page a `title`** as this will cause it to be shown in the breadcrumbs - a thing you most likely don't want.
2024-10-06 18:37:18 +00:00
{{< multiconfig fm=true file="content/more/_index.en.md" >}}
[_build]
render = "never"
list = "never"
publishResources = false
2024-03-02 10:04:52 +00:00
{{< /multiconfig >}}
In this case, the file itself can be a branch bundle, leaf bundle or simple page (see exampleSite's `content/more/credits.en.md`). This causes its content to be contained in the sitemap.
2024-10-06 18:37:18 +00:00
{{< multiconfig fm=true file="content/more/credits_index.en.md" >}}
title = "Credits"
2024-03-02 10:04:52 +00:00
{{< /multiconfig >}}