istio.io/layouts/section-index/list.html

35 lines
914 B
HTML

{{ define "main" }}
{{ .Scratch.Set "skipSeeAlso" true }}
{{ partial "primary-top.html" . }}
<p>{{ .Description }}</p>
<div class="section-index">
<div class="row">
{{ $pages := (where .Site.Pages "Section" .Section).ByWeight }}
{{ $parent := .Page }}
{{ range $pages }}
{{ if eq .Parent $parent }}
<div class="col-xs-12 col-sm-6 col-xl-4 entry">
<h5>
<a href="{{ .Permalink }}">
{{ if .Params.icon }}
<img src="{{ .Params.icon }}" alt="Icon" class="page_icon" />
{{ end }}
{{ .Title }}</a>
</h5>
<p>{{ .Description }}</p>
</div>
{{ end }}
{{ end }}
</div>
</div>
{{ .Content }}
{{ partial "primary-bottom.html" . }}
{{ end }}