package layout import "github.com/fossyy/filekeeper/types" templ Base(title string){ { title }
@modal()
{ children... }
@modalScript() } templ BaseAuth(title string){ { title }
@modal()
{ children... }
@modalScript() } templ modal() { } templ modalScript(){ } templ Navbar(user types.User) {
Filekeeper Logo Filekeeper
if user.Authenticated {
} else { Sign up Sign in }
} templ Footer() { }