update meta

This commit is contained in:
maddalax 2024-10-10 18:01:51 -05:00
parent c2b3b439e6
commit bd344d56ef

View file

@ -11,14 +11,14 @@ func RootPage(children ...h.Ren) h.Ren {
h.Meta("viewport", "width=device-width, initial-scale=1"), h.Meta("viewport", "width=device-width, initial-scale=1"),
h.Link("/public/favicon.ico", "icon"), h.Link("/public/favicon.ico", "icon"),
h.Link("/public/apple-touch-icon.png", "apple-touch-icon"), h.Link("/public/apple-touch-icon.png", "apple-touch-icon"),
h.Meta("title", "htmgo template"), h.Meta("title", "hackernews"),
h.Meta("charset", "utf-8"), h.Meta("charset", "utf-8"),
h.Meta("author", "htmgo"), h.Meta("author", "htmgo"),
h.Meta("description", "this is a template"), h.Meta("description", "hacker news reader, built with htmgo"),
h.Meta("og:title", "htmgo template"), h.Meta("og:title", "hacker news reader"),
h.Meta("og:url", "https://htmgo.dev"), h.Meta("og:url", "https://hn.htmgo.dev"),
h.Link("canonical", "https://htmgo.dev"), h.Link("canonical", "https://hn.htmgo.dev"),
h.Meta("og:description", "this is a template"), h.Meta("og:description", "hacker news reader, built with htmgo"),
h.Link("/public/main.css", "stylesheet"), h.Link("/public/main.css", "stylesheet"),
h.Script("/public/htmgo.js"), h.Script("/public/htmgo.js"),
), ),