summaryrefslogtreecommitdiff
path: root/layouts/shortcodes/section.html
blob: a7f45d1bcfc6dbec84cc6fb8cd5cc792b3f3d995 (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 class="markdown-inner">
    {{ default .Summary .Description }}
  </dd>
{{ end }}
</dl>