21 lines
581 B
HTML
Raw Normal View History

{{/* Get section sidebar config from Hugo `data` directory
2024-04-03 22:36:58 +00:00
If the site is multilingual, the sidebar data is stored in a language-specific
directory. For example, the English sidebar data is stored in `data/en/sidebar.yaml`.
*/}}
{{ $data := "" }}
{{ $section := .Section | default "" }}
{{ $sidebarKey := "sidebar" }}
2024-04-03 22:36:58 +00:00
{{ if hugo.IsMultilingual }}
{{ with (index site.Data site.Language.Lang $sidebarKey $section) }}
2024-04-03 22:36:58 +00:00
{{ $data = . }}
{{ end }}
{{ else }}
{{ with (index site.Data $sidebarKey $section) }}
2024-04-03 22:36:58 +00:00
{{ $data = . }}
{{ end }}
{{ end }}
{{ return $data }}