summaryrefslogtreecommitdiff
path: root/view/main.templ
blob: 64a365c6d471c9d6de6956319ad3ee96736e1486 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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>
}