Some work

This commit is contained in:
2024-04-08 23:23:23 +02:00
parent 01e96380a4
commit c60dd3357f
15 changed files with 407 additions and 23 deletions

15
view/main.templ Normal file
View File

@ -0,0 +1,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>
}