18 lines
459 B
Plaintext
18 lines
459 B
Plaintext
package templates
|
|
|
|
templ Layout(title string, cssPath string, jsPath string) {
|
|
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
|
<title>{ title }</title>
|
|
<link rel="stylesheet" href={ cssPath }/>
|
|
<script type="module" src={ jsPath } defer></script>
|
|
</head>
|
|
<body class="bg-stone-950 text-stone-100 antialiased">
|
|
{ children... }
|
|
</body>
|
|
</html>
|
|
}
|