This repository has been archived on 2024-04-25. You can view files and clone it, but cannot push or open issues or pull requests.
snackbar/frontend/index.html
2024-04-11 15:32:32 +02:00

22 lines
543 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
<title>Snackbar</title>
<!-- TODO(d1): vendor this locally -->
<script src="https://unpkg.com/htmx.org@1.9.6"></script>
</head>
<body>
<div
id="app"
hx-get="/init"
hx-trigger="load once"
hx-indicator="#initial-loader"
hx-target="this"
hx-swap="outerHtml">
<p id="initial-loader" class="htmx-indicator">Bootstrapping snackbar...</p>
</div>
</body>
</html>