This commit is contained in:
csehviktor
2025-08-01 05:52:06 +02:00
commit aae5a0e0fb
16 changed files with 656 additions and 0 deletions

16
view/base.templ Normal file
View File

@@ -0,0 +1,16 @@
package view
templ base(title string) {
<!DOCTYPE html>
<html lang="zxx">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>{ title }</title>
<link rel="stylesheet" href="/style.css"/>
</head>
<body>
{ children... }
</body>
</html>
}