mirror of
https://github.com/kubesphere/website.git
synced 2025-12-26 00:12:48 +00:00
14 lines
482 B
HTML
14 lines
482 B
HTML
{{ $s := .section }}
|
|
{{ $firstSection := .firstSection }}
|
|
{{ $pages := (union $s.Pages $s.Sections).ByWeight }}
|
|
{{ $first := index $s.Pages 0}}
|
|
{{ if $first }}
|
|
{{ if $first.IsPage }}
|
|
<a href="{{ $first.RelPermalink }}">{{ $firstSection.LinkTitle }}</a>
|
|
{{ else }}
|
|
{{ partial "firstPageInSection" (dict "section" $first "firstSection" $firstSection) }}
|
|
{{ end }}
|
|
{{ else }}
|
|
<a href="{{ $s.RelPermalink }}">{{ $firstSection.LinkTitle }}</a>
|
|
{{ end }}
|