summaryrefslogtreecommitdiff
path: root/view/main.templ
blob: b6d94d8c7bc34c1ee1317229efdb1dce062d5566 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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>
        <script src="/static/response-targets.js"></script>
    </head>
    <body hx-boost="true" hx-ext="response-targets">
        @contents
    </body>
    </html>
}