25 lines
898 B
HTML
25 lines
898 B
HTML
<!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>
|