Files
futur-web-app/server/internal/templates/layout.templ
2026-01-24 15:59:05 +02:00

19 lines
411 B
Plaintext

package templates
templ Layout(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>
<script src="/static/htmx.2.0.8.min.js"></script>
<style>
body { font-family: Arial, sans-serif; margin: 0; padding: 20px; }
</style>
</head>
<body>
{ children... }
</body>
</html>
}