Files
timer/view/main.templ
2024-04-08 23:23:23 +02:00

16 lines
342 B
Plaintext

package view
templ Main(contents templ.Component) {
<!DOCTYPE html>
<html>
<head>
<title>Cool timer app</title>
<link rel="stylesheet" href="/static/style.css" />
<script src="/static/htmx.min.js"></script>
</head>
<body hx-boost="true">
@contents
</body>
</html>
}