package views import ( "fmt" "github.com/ditatompel/xmr-remote-nodes/internal/config" "time" ) var buildTime = time.Now().Unix() type Meta struct { Title string Description string Keywords string Robots string Permalink string Identifier string } templ base(m Meta) { { m.Title } — xmr.ditatompel.com @navbar(m.Identifier)
{ children... }
} templ BaseLayout(m Meta, cmp templ.Component) { @base(m) { @cmp } } templ BlankLayout(cmp templ.Component) { @cmp }