aboutsummaryrefslogtreecommitdiff
path: root/ui/html
diff options
context:
space:
mode:
Diffstat (limited to 'ui/html')
-rw-r--r--ui/html/pages/index.tmpl.html8
1 files changed, 8 insertions, 0 deletions
diff --git a/ui/html/pages/index.tmpl.html b/ui/html/pages/index.tmpl.html
index 46a58e8..ec98623 100644
--- a/ui/html/pages/index.tmpl.html
+++ b/ui/html/pages/index.tmpl.html
@@ -3,4 +3,12 @@
{{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}}