blob: 1a4bf950a39cd76c4fc4a9604014d8b0b60631de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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>
</head>
<body hx-boost="true">
@contents
</body>
</html>
}
|