mirror of
https://git.maid.zone/stuff/soundcloak.git
synced 2026-01-01 08:29:37 +05:00
23 lines
516 B
Plaintext
23 lines
516 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">
|
|
if title != "" {
|
|
<title>{ title } • soundcloak</title>
|
|
} else {
|
|
<title>soundcloak</title>
|
|
}
|
|
|
|
if head != nil {
|
|
@head
|
|
}
|
|
</head>
|
|
<body>
|
|
@content
|
|
</body>
|
|
</html>
|
|
} |