27 lines
621 B
Plaintext
27 lines
621 B
Plaintext
package layouts
|
|
|
|
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.4"></script>
|
|
<link rel="stylesheet" href="/static/css/app.css"/>
|
|
</head>
|
|
<body>
|
|
<main class="container">
|
|
{ children... }
|
|
</main>
|
|
<script>
|
|
document.body.addEventListener('htmx:beforeSwap', function (evt) {
|
|
if (evt.detail.xhr.status === 422) {
|
|
evt.detail.shouldSwap = true;
|
|
}
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|
|
}
|