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

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