summaryrefslogtreecommitdiff
path: root/blag/layouts/index.html
blob: 3e0966bcf9d2c2022105c8bfc86828c22798446b (plain)
1
2
3
4
5
6
7
8
9
10
11
{{ partial "header.html" . }}
<body>
{{ partial "subheader.html" . }}
<section id="main">
    {{ range first 10 .Data.Pages }}
        {{ if eq .Section "blog" }}
            {{ .Render "summary" }}
        {{ end }}
    {{ end }}
</section>
{{ partial "footer.html" . }}