1
0

Remove "fmt" import in readme example (#31)

Also style menu in simple example slightly.
This commit is contained in:
Hans Raaf 2020-10-23 12:32:47 +02:00 committed by GitHub
parent 3198b25445
commit c99025e6c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 3 deletions

View File

@ -27,7 +27,6 @@ Then do something like this:
package main
import (
"fmt"
"net/http"
g "github.com/maragudk/gomponents"

View File

@ -36,7 +36,11 @@ func page(props pageProps) g.Node {
g.Attr("lang", "en"),
el.Head(
el.Title(props.title),
el.Style(g.Attr("type", "text/css"), g.Raw(".is-active{font-weight: bold}")),
el.Style(g.Attr("type", "text/css"),
g.Raw(".is-active{font-weight: bold}"),
g.Raw("ul.nav { list-style-type: none; margin: 0; padding: 0; overflow: hidden; }"),
g.Raw("ul.nav li { display: block; padding: 8px; float: left; }"),
),
),
el.Body(
navbar(navbarProps{path: props.path}),
@ -66,5 +70,5 @@ func navbar(props navbarProps) g.Node {
lis = append(lis, el.Li(
el.A(item.path, attr.Classes(map[string]bool{"is-active": props.path == item.path}), g.Text(item.text))))
}
return el.Ul(lis...)
return el.Ul(append(lis, attr.Class("nav"))...)
}