{{ $version := .CurrentSection.Params.version }}
{{ if $version }}
{{ $gh := .Page.Params.gh }}
{{ $tocTemplateName := index (index $.Site.Data.docs "toc-mapping") $version }}
{{ if not $tocTemplateName }}
{{ $tocTemplateName = "default" }}
{{ end }}
{{ $toc := (index $.Site.Data.docs $tocTemplateName).toc }}
{{ range $toc }}
{{ .title }}
{{ end }}
{{ end }}