Files
timer/view/main.templ
2024-04-15 23:17:09 +02:00

23 lines
606 B
Plaintext

package view
import (
"stevenlr.com/timer/model"
)
templ Main(contents templ.Component, currentUser *model.User) {
<!DOCTYPE html>
<html>
<head>
<title>Cool timer app</title>
<link rel="stylesheet" href="/static/style.css" />
<script type="module" src="/static/ui-components.js"></script>
<script src="/static/htmx.min.js"></script>
<script src="/static/response-targets.js"></script>
</head>
<body hx-boost="true" hx-ext="response-targets">
@LoginForm(currentUser)
@contents
</body>
</html>
}