website/layouts/partials/firstPageInSection.html
liuboaibc 8f466739bf update: fix bugs and update style
Signed-off-by: liuboaibc <kukudehero@gmail.com>
2020-09-23 16:01:28 +08:00

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 }}