dumb/views/layout.templ

16 lines
193 B
Plaintext
Raw Normal View History

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