17 lines
No EOL
389 B
Text
17 lines
No EOL
389 B
Text
package httpUtil
|
|
|
|
templ BasePage(title string) {
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>{ title } - Backseat Music</title>
|
|
<link rel="stylesheet" href="/assets/main.css" />
|
|
</head>
|
|
<body>
|
|
<main>
|
|
{ children... }
|
|
</main>
|
|
</body>
|
|
</html>
|
|
} |