Files
cms/web/public/views/layout.templ
T
2026-05-31 19:05:39 -05:00

18 lines
299 B
Plaintext

package views
templ Layout(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>
<main>
{ children... }
</main>
</body>
</html>
}