wstempl/view/common.templ
2025-05-09 17:30:37 +07:00

16 lines
276 B
Plaintext

package view
templ Common(title string) {
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>{ title }</title>
</head>
<body>
{ children... }
</body>
</html>
}