package templates import "github.com/golang-jwt/jwt/v5" templ Index(token *jwt.Token) { {{ username := "" if claims, ok := token.Claims.(jwt.MapClaims); ok { username = claims["username"].(string) } }}

Welcome {username}

Projects

}