@content
package layout import ( "fmt" "time" "github.com/gin-gonic/gin" ) templ Layout(c *gin.Context, content templ.Component) { {{ username := c.GetString("username") if username == "" { username = "admin" } }}
Please sign in to continue