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

42 lines
1.7 KiB
Markdown
Raw Normal View History

2024-09-29 21:48:56 +00:00
+++
description = "Configure the header and footer of the sidebar"
options = ["disableLandingPageButton", "showVisitedLinks"]
2024-09-29 21:48:56 +00:00
title = "Header & Footer"
weight = 2
+++
## Home Button Configuration
2024-10-06 18:37:18 +00:00
{{% badge style="cyan" icon="gears" title=" " %}}Option{{% /badge %}} If `disableLandingPageButton=true`, the Home button will be hidden on the left menu.
2024-09-29 21:48:56 +00:00
If you display the Home button, it is an alternative for clicking on the logo. To edit its logo or text, you will have to configure the `landingPageName` for the defined languages
{{< multiconfig file=hugo >}}
[languages]
[languages.en]
[languages.en.params]
landingPageName = "<i class='fa-fw fas fa-home'></i> Home"
[languages.pir]
[languages.pir.params]
landingPageName = "<i class='fa-fw fas fa-home'></i> Arrr! Homme"
{{< /multiconfig >}}
If this option is not configured for a specific language, they will get their default values of
{{< multiconfig >}}
[params]
landingPageName = "<i class='fa-fw fas fa-home'></i> Home"
{{< /multiconfig >}}
The home button is going to look like this:
![Default Home Button](home_button_defaults.png?width=18.75rem)
## History
2024-10-06 18:37:18 +00:00
{{% badge style="cyan" icon="gears" title=" " %}}Option{{% /badge %}} Set `showVisitedLinks=true` to show checkmarks for visited pages of the main menu. This also causes the display of the `Clear History` entry in the lower part of the menu to remove all checkmarks. The checkmarks will also been removed if you regenerate your site as the used ids are not stable.
2024-09-29 21:48:56 +00:00
## Footer
You can change the menu footer by overriding the partial `layouts/partials/menu-footer.html`. See the [Partials section](configuration/modifications/partials) for more customization options.