go-todos-app/views/template/template.templ
Michael Thomson 44feca12d2
All checks were successful
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/push/dryrun Pipeline was successful
ci/woodpecker/push/publish-tag Pipeline was successful
ci/woodpecker/push/publish-latest Pipeline was successful
tailwind and docker update
2024-06-09 16:21:41 -04:00

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>
}