Files
Matthias Hinrichs 189e7a2329 first commit
2025-08-26 03:17:49 +02:00

17 lines
342 B
Plaintext

package views
templ Layout(title string) {
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>{ title }</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-gray-50">
{ children... }
</body>
</html>
}