18 lines
501 B
Plaintext
18 lines
501 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 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">
|
|
@contents
|
|
</body>
|
|
</html>
|
|
}
|