few more meta tags
This commit is contained in:
parent
d7b0576269
commit
488b415f88
1 changed files with 9 additions and 2 deletions
|
|
@ -9,14 +9,21 @@ import (
|
||||||
var Version = uuid.NewString()[0:6]
|
var Version = uuid.NewString()[0:6]
|
||||||
|
|
||||||
func RootPage(children ...h.Ren) *h.Element {
|
func RootPage(children ...h.Ren) *h.Element {
|
||||||
|
title := "htmgo"
|
||||||
|
description := "build simple and scalable systems with go + htmx"
|
||||||
|
|
||||||
return h.Html(
|
return h.Html(
|
||||||
h.HxExtension(h.BaseExtensions()),
|
h.HxExtension(h.BaseExtensions()),
|
||||||
h.Head(
|
h.Head(
|
||||||
h.Meta("viewport", "width=device-width, initial-scale=1"),
|
h.Meta("viewport", "width=device-width, initial-scale=1"),
|
||||||
h.Meta("og:title", "htmgo"),
|
h.Meta("title", title),
|
||||||
|
h.Meta("charset", "utf-8"),
|
||||||
|
h.Meta("author", "htmgo"),
|
||||||
|
h.Meta("description", description),
|
||||||
|
h.Meta("og:title", title),
|
||||||
h.Meta("og:url", "https://htmgo.dev"),
|
h.Meta("og:url", "https://htmgo.dev"),
|
||||||
h.Link("canonical", "https://htmgo.dev"),
|
h.Link("canonical", "https://htmgo.dev"),
|
||||||
h.Meta("og:description", "build simple and scalable systems with go + htmx"),
|
h.Meta("og:description", description),
|
||||||
h.LinkWithVersion("/public/main.css", "stylesheet", Version),
|
h.LinkWithVersion("/public/main.css", "stylesheet", Version),
|
||||||
h.ScriptWithVersion("/public/htmgo.js", Version),
|
h.ScriptWithVersion("/public/htmgo.js", Version),
|
||||||
h.Raw(`
|
h.Raw(`
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue