Hidden blog nav for now
continuous-integration/drone/push Build is passing Details
continuous-integration/drone Build is passing Details

This commit is contained in:
DutchEllie 2022-03-27 16:50:48 +02:00
parent cd8d116fef
commit 7389daba09
Signed by: DutchEllie
SSH Key Fingerprint: SHA256:dKq6ZSgN5E3Viqrw/+xAdf2VdR6hdRGNyrYqXXwfjTY
1 changed files with 2 additions and 1 deletions

View File

@ -20,9 +20,10 @@ func (n *navbar) Render() app.UI {
app.Li().Body( app.Li().Body(
app.A().Href("/galaxies").Text("Galaxies"), app.A().Href("/galaxies").Text("Galaxies"),
), ),
// Disabled for now since there are none anyway
app.Li().Body( app.Li().Body(
app.A().Href("/blog").Text("Blog"), app.A().Href("/blog").Text("Blog"),
), ).Style("display", "none"),
), ),
).Class("navbar") ).Class("navbar")
} }