23 lines
600 B
Plaintext
23 lines
600 B
Plaintext
package templates
|
|
|
|
// AppLayout is the main application layout, this does not contain any content other than
|
|
// meta data, links, scripts and whatever is passed into it as a component.
|
|
templ AppLayout(title string, child templ.Component) {
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>{ title }</title>
|
|
<link rel="stylesheet" href="/v1/web/static/css/tailwind.css" />
|
|
<script src="https://unpkg.com/htmx.org@2.0.4"></script>
|
|
</head>
|
|
|
|
<body class="bg-gray-100">
|
|
@child
|
|
</body>
|
|
|
|
</html>
|
|
}
|