Files
pastebin/view/base.templ
2025-10-13 13:41:34 +02:00

16 lines
320 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>
}