17 lines
464 B
Plaintext
17 lines
464 B
Plaintext
package template
|
|
|
|
templ Base(title string) {
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8"></meta>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"></meta>
|
|
<script src="https://unpkg.com/htmx.org@1.9.11"></script>
|
|
<link rel="stylesheet" href="/assets/output.css"></link>
|
|
<title>{title}</title>
|
|
</head>
|
|
<body>
|
|
{ children... }
|
|
</body>
|
|
</html>
|
|
}
|