summaryrefslogtreecommitdiff
path: root/blag/layouts/_default/single.html
blob: 00aaabc5e49501fdda4c2d480f127407782fd3b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{{ partial "header.html" . }}
<body>
{{ partial "subheader.html" . }}
<section id="main">
    <div>
        <div class="colleft">
            <article id="content">
                {{ .Content}}
            </article>
        </div>
        <div class="colright">
            {{ partial "author.html" . }}
        </div>
    </div>
</section>
</body>
{{ partial "footer.html" . }}