Files
schreifuchs.ch/web/layouts/base.templ
T
2026-02-11 20:27:14 +01:00

19 lines
365 B
Templ

package layouts
templ Base(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>
<link rel="icon" type="image/png" href="/static/favicon.png"/>
</head>
<body>
<main>
{ children... }
</main>
</body>
</html>
}