13 lines
148 B
Plaintext
13 lines
148 B
Plaintext
package layouts
|
|
|
|
templ Page(title string) {
|
|
<html>
|
|
<head>
|
|
<title>{ title }</title>
|
|
</head>
|
|
<body>
|
|
{ children... }
|
|
</body>
|
|
</html>
|
|
}
|