budget-go/view/template/home/page.templ
2024-09-14 23:37:03 +02:00

15 lines
186 B
Text

package home
import "gitnet.fr/deblan/budget/view/template"
templ Page() {
<!doctype html>
<html>
@template.Head("Login")
<body>
Home!
@template.JS()
</body>
</html>
}