Files
cad-atlas/internal/web/layout.templ
T
2026-07-19 08:29:23 +00:00

20 lines
506 B
Templ

package web
templ Layout(title string) {
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width,initial-scale=1"/>
<title>{ title }</title>
<script src="https://unpkg.com/htmx.org@2.0.0"></script>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="min-h-screen bg-slate-50 text-slate-900 antialiased">
<main class="max-w-3xl mx-auto px-6 py-12">
{ children... }
</main>
</body>
</html>
}