summaryrefslogtreecommitdiff
path: root/layouts/shortcodes/section.html
blob: 21d2e75416b444907bfd44078bbf8b4f4f41fa2b (plain)
1
2
3
4
5
6
7
8
9
10
<dl>
{{ range .Page.Pages }}
  <dt>
    <a href="{{ .RelPermalink }}">{{ partial "docs/title" . }}</a>
  </dt>
  <dd>
    {{ default .Summary .Description }}
  </dd>
{{ end }}
</dl>