Files
pastebin/view/base.templ
csehviktor aae5a0e0fb init
2025-08-01 05:52:06 +02:00

17 lines
321 B
Plaintext

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>
}