Files
guz.one/layouts/page.templ
Gustavo "Guz" L. de Mello f1847f214f feat: initial setup
2024-05-20 18:40:43 -03:00

13 lines
148 B
Plaintext

package layouts
templ Page(title string) {
<html>
<head>
<title>{ title }</title>
</head>
<body>
{ children... }
</body>
</html>
}