summaryrefslogtreecommitdiff
path: root/themes/kvog/layouts/section.html
blob: bb7ac54c6928036d52280170e97c4b3d651a8cd3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{{ define "main" }}
    {{ .Content }}
    <table>
        {{ range .Pages }}
            <tr>
                <td><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></td>
            </tr>
        {{ end }}
    </table>
    <!--
    {{ range .Pages }}
        <section>
            <h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
            {{ .Summary }}
        </section>
    {{ end }}
    -->
{{ end }}