summaryrefslogtreecommitdiff
path: root/layouts/section.html
blob: 0b9594572ca91b8e9c99aa63e150b0116fb7374d (plain)
1
2
3
4
5
6
7
8
9
10
11
{{ define "main" }}
    {{ .Content }}
    <table>
        {{ range .Pages }}
            <tr>
                <td><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></td>
            </tr>
        {{ end }}
    </table>
{{ end }}