Files
cardio/templates/base.html
2023-01-24 20:16:12 +11:00

29 lines
796 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Cardio</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/htmx.org"></script>
<script src="https://unpkg.com/hyperscript.org"></script>
</head>
<body>
<div class="h-full w-full bg-gray-50 relative overflow-y-auto">
<main>
<div class="px-4 container mx-auto pt-8" id="container">
<div hx-get="{{ url_for('devices') }}" hx-trigger="load">
</div>
<div hx-get="{{ url_for('overview') }}" hx-trigger="load, every 2s">
</div>
</div>
</main>
</div>
</body>
</html>