backseat-music/backseat/httpUtil/basePage.templ
2025-07-22 20:35:12 +01:00

13 lines
No EOL
237 B
Text

package httpUtil
templ BasePage(title string) {
<!DOCTYPE html>
<html>
<head>
<title>{ title } - Backseat Music</title>
</head>
<body>
{ children... }
</body>
</html>
}