workable POC

This commit is contained in:
2026-08-09 16:32:42 +02:00
commit f0c527f355
10 changed files with 1293 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
<meta name="theme-color" content="#080a0f">
<title>Hue</title>
<link rel="stylesheet" href="{{ url_for('static', filename='app.css') }}">
</head>
<body data-api-prefix="{{ request.script_root }}/api">
<main class="dashboard" aria-label="Hue controls">
<p id="status" class="status" role="status">Checking lights…</p>
<section class="button-grid">
{% for button in buttons %}
<button class="group-button" data-id="{{ button.id }}" type="button">
<span>{{ button.name }}</span>
<small>Checking scene…</small>
</button>
{% endfor %}
</section>
</main>
<script src="{{ url_for('static', filename='app.js') }}"></script>
</body>
</html>