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