aboutsummaryrefslogtreecommitdiff
path: root/ui/html/pages
diff options
context:
space:
mode:
Diffstat (limited to 'ui/html/pages')
-rw-r--r--ui/html/pages/index.tmpl.html8
1 files changed, 5 insertions, 3 deletions
diff --git a/ui/html/pages/index.tmpl.html b/ui/html/pages/index.tmpl.html
index ec98623..78c2bb2 100644
--- a/ui/html/pages/index.tmpl.html
+++ b/ui/html/pages/index.tmpl.html
@@ -1,14 +1,16 @@
{{define "title"}}Blog{{end}}
{{define "main"}}
- <h2>Blog</h2>
- <p>Home of {{.Name}}</p>
+ <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>
- {{.Content}}
</div>
+ {{.Content}}
</div>
{{end}}
{{end}}