aboutsummaryrefslogtreecommitdiff
path: root/ui/html/pages/index.tmpl.html
blob: 78c2bb2c7f38ac0b02a32e7b5ff6ec144353dc73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{{define "title"}}Blog{{end}}

{{define "main"}}
    <div class="topline">
        <h2>Blog</h2>
        <p>Home of {{.Name}}</p>
    </div>
    {{range .Rows}}
        <div class="card">
            <div class="header">
                <h4><b>{{.Name}} - {{.Time}}</b></h4>
            </div>
            {{.Content}}
        </div>
    {{end}}
{{end}}