dumb/views/layout.templ
2024-05-01 22:22:54 +01:00

16 lines
203 B
Plaintext

package views
templ layout(title string) {
<!DOCTYPE html>
<html lang="en">
@head(title)
<body>
<main id="app">
@navbar()
{ children... }
@footer()
</main>
</body>
</html>
}