diff options
| author | Samuel Johnson <[email protected]> | 2025-11-24 01:36:18 -0500 |
|---|---|---|
| committer | Samuel Johnson <[email protected]> | 2025-11-24 01:36:18 -0500 |
| commit | 384a590b5462883d714bc1682e4d81d6321b2b12 (patch) | |
| tree | 01d3ed55448948a2fe162b7209f0f2211770c9fb /ui/html/pages | |
| parent | 177663c73f3d708120b975a74eebd0951177a53b (diff) | |
Improve page layout, add navbar
Diffstat (limited to 'ui/html/pages')
| -rw-r--r-- | ui/html/pages/index.tmpl.html | 8 |
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}} |
