themes/kube/layouts/section/docs.html (20 lines of code) (raw):
{{ define "title"}} {{ .Title}} {{end}}
{{ define "header"}} {{ partial "header" .}} {{end}}
{{ define "main"}}
<div id="main">
<div id="hero">
<h1>Documentation</h1>
</div>
<div id="components">
<div class="row gutters">
{{ range .Data.Pages.ByWeight }}
<div class="col col-4 item">
<h4><a href="{{ .Permalink }}">{{ .Title }}</a></h4>
<p>{{ .Params.description }}</p>
</div>
{{ end }}
</div>
</div>
</div>
{{ end }}
{{ define "footer"}} {{ partial "footer" .}} {{end}}