dumb/views/layout.templ

16 lines
203 B
Plaintext
Raw Normal View History

package views
templ layout(title string) {
<!DOCTYPE html>
2024-05-01 22:22:54 +01:00
<html lang="en">
@head(title)
<body>
<main id="app">
@navbar()
{ children... }
@footer()
</main>
</body>
</html>
}