diff --git a/examples/hackernews/pages/root.go b/examples/hackernews/pages/root.go index cec47ff..8c00fc6 100644 --- a/examples/hackernews/pages/root.go +++ b/examples/hackernews/pages/root.go @@ -11,14 +11,14 @@ func RootPage(children ...h.Ren) h.Ren { h.Meta("viewport", "width=device-width, initial-scale=1"), h.Link("/public/favicon.ico", "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("author", "htmgo"), - h.Meta("description", "this is a template"), - h.Meta("og:title", "htmgo template"), - h.Meta("og:url", "https://htmgo.dev"), - h.Link("canonical", "https://htmgo.dev"), - h.Meta("og:description", "this is a template"), + h.Meta("description", "hacker news reader, built with htmgo"), + h.Meta("og:title", "hacker news reader"), + h.Meta("og:url", "https://hn.htmgo.dev"), + h.Link("canonical", "https://hn.htmgo.dev"), + h.Meta("og:description", "hacker news reader, built with htmgo"), h.Link("/public/main.css", "stylesheet"), h.Script("/public/htmgo.js"), ),