summaryrefslogtreecommitdiff
path: root/blag/layouts/index.html
blob: 528a97cec0c10e4471e44f2e9f171bd4b6138de1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{{ partial "header.html" . }}
<body>
{{ partial "subheader.html" . }}
<section id="main">
    <div>
        <div class="colleft">
            {{ range first 10 .Data.Pages }}
                {{ if eq .Section "blog" }}
                    {{ .Render "summary" }}
                {{ end }}
            {{ end }}
        </div>
        <div class="colright">
            {{ partial "author.html" . }}
        </div>
    <div>
</section>


{{ partial "footer.html" . }}