Files
soundcloak/templates/base.templ

25 lines
531 B
Plaintext

package templates
templ Base(title string, content templ.Component, head templ.Component) {
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" href="/global.css"/>
if title != "" {
<title>{ title } • Soundcloak</title>
} else {
<title>Soundcloak</title>
}
if head != nil {
@head
}
</head>
<body>
<a href="/" id="sc"><h1>Soundcloak</h1></a>
@content
</body>
</html>
}