mirror of
https://github.com/kubesphere/website.git
synced 2025-12-26 08:32:55 +00:00
22 lines
586 B
HTML
22 lines
586 B
HTML
<ul class="common-flex-layout">
|
|
{{ if .ver }}
|
|
{{ $sections := where .context.Sections ".Params.section1.version" "==" .ver }}
|
|
|
|
{{ range $sections }}
|
|
{{ partial "section_item" . }}
|
|
{{ end }}
|
|
{{ range $sections }}
|
|
<li style="height: 0; margin: 0; padding: 0;"></li>
|
|
{{ end }}
|
|
|
|
<!-- render all -->
|
|
{{ else }}
|
|
{{ $sections := .context.Sections.ByWeight }}
|
|
{{ range $sections }}
|
|
{{ partial "section_item" . }}
|
|
{{ end }}
|
|
{{ range $sections }}
|
|
<li style="height: 0; margin: 0; padding: 0;"></li>
|
|
{{ end }}
|
|
{{ end }}
|
|
</ul> |