summaryrefslogtreecommitdiffhomepage
path: root/layouts/docs/list.html
blob: 4afc32653f28bcce4fd13a2f25701ba3d9a877dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{{ define "title"}} {{ .Title}} {{end}}
{{ define "main" }}

{{ if .Content }}
{{ .Render "content" }}
{{ else }}
<div id="hero" class="wrap td-content ">
  <h1>{{ .Title }}</h1>
  {{ with .Params.description }}<div class="lead">{{ . | markdownify }}</div>{{ end }}
</div>

<section id="pageContent">

{{ range .Sections.ByWeight }} 
    <li>
      <a href="{{.Permalink}}">{{.Title}}</a>
    </li>
{{ end }}

{{ range .Paginator.Pages.ByWeight }} 
  <li>
    <a href="{{.Permalink}}">{{.Title}}</a>
  </li>
{{ end }}

</section>

{{ end }}

{{ end }}