website/layouts/partials/section.html
liuboaibc c865b2c3eb SEO with H tags
Signed-off-by: liuboaibc <kukudehero@gmail.com>
2021-03-29 11:49:23 +08:00

41 lines
1.5 KiB
HTML

{{ $sections := .Sections.ByWeight }}
<ul class="common-flex-layout">
{{ range $sections }}
<li>
<p>
<span><img src="{{ .Params.icon }}" alt="{{ .LinkTitle }}"></span>
<a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a>
</p>
{{ $page_list := (union (where .Pages ".Params._build.render" "!=" false) .Sections).ByWeight }}
{{ $length := len $page_list}}
<ul>
{{ if gt $length 6 }}
{{ range first 5 $page_list }}
<li>
{{ if .IsPage }}
<a href="{{ .RelPermalink }}" title="{{ .LinkTitle }}">{{ .LinkTitle }}</a>
{{ else }}
{{ partial "firstPageInSection" (dict "section" . "firstSection" .) }}
{{ end }}
</li>
{{ end }}
<li><a href="{{ .RelPermalink }}">{{ i18n "Learn More" }}...</a></li>
{{ else }}
{{ range first 6 $page_list }}
<li>
{{ if .IsPage }}
<a href="{{ .RelPermalink }}" title="{{ .LinkTitle }}">{{ .LinkTitle }}</a>
{{ else }}
{{ partial "firstPageInSection" (dict "section" . "firstSection" .) }}
{{ end }}
</li>
{{ end }}
{{ end }}
</ul>
</li>
{{ end }}
{{ range $sections }}
<li style="height: 0; margin: 0; padding: 0;"></li>
{{ end }}
</ul>