26 lines
639 B
Plaintext
26 lines
639 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="https://unpkg.com/htmx.org@1.9.6"></script>
|
|
</head>
|
|
<body>
|
|
{ children... }
|
|
<script>
|
|
document.body.addEventListener('htmx:beforeRequest', function(e) {
|
|
e.detail.elt.classList.add('loading');
|
|
});
|
|
|
|
document.body.addEventListener('htmx:afterRequest', function(e) {
|
|
e.detail.elt.classList.remove('loading');
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|
|
}
|