How can I name these parameters/blocks differently?

Hello guys,

I have these two different paramaters set to different values.
(1) title of the page
(2) title of the sidebar
grafik

But they have the same value when I do “hugo server”-command to create the site.
How can I do have Packet Blog as page title at the top and Christopher as title in the sidebar ?

2nd Question: Where can I get a symbol for Linkedin with this style ? I couldnt find something in the theme-docs and in the files are only for twitter and github.

I use the theme “stack”.
https://themes.gohugo.io/themes/hugo-theme-stack/

thanks in advance.,
Christopher

this is how it looks when I create the website:

Both title fields in your site configuration are site titles, not page titles. Take this example:

baseURL = 'https://example.org/'
title = 'Site Title'

[languages.en]
  languageCode = 'en-US'
  languageName = 'English'
  weight = 1
  title = 'Site Title (English)'

[languages.de]
  languageCode = 'de-DE'
  languageName = 'Deutsch'
  weight = 2
  title = 'Site Title (Deutsch)'

[languages.es]
  languageCode = 'es-ES'
  languageName = 'Español'
  weight = 3

When I visit the English version of the site, the site title will be “Site Title (English)”.

When I visit the Deutsch version of the site, the site title will be “Site Title (Deutsch)”.

When I visit the Español version of the site, the site title will fall back to “Site Title” because it is not defined in the languages.es table.

For your theme-specific issues, please raise a question with the theme author:
https://github.com/CaiJimmy/hugo-theme-stack/discussions

okay, thank you :slight_smile:

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.