wstempl/component/common.templ
2025-05-29 19:26:25 +07:00

17 lines
343 B
Plaintext

package component
templ Common(title string) {
<html>
<head>
<title>{ title }</title>
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet" />
</head>
<body class="bg-gray-100 text-gray-800">
<main class="min-h-screen py-10">
{ children... }
</main>
</body>
</html>
}