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