led-hands-rpi/views/index.erb
2019-02-24 04:35:56 +00:00

28 lines
841 B
Plaintext

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>LED Manager</title>
<link href="main.css" rel="stylesheet">
</head>
<body>
<div class="container">
<h1>LED Manager</h1>
<ul class="switches">
<li><a href="/clear">clear</a></li>
<li><a href="/cycle">cycle test</a></li>
</ul>
<ul class="switches">
<li><a <%= (led_status[:blue]) ? 'class="active"' : "" %> href="/led/blue">blue</a></li>
<li><a <%= (led_status[:white]) ? 'class="active"' : "" %> href="/led/white">white</a></li>
<li><a <%= (led_status[:red]) ? 'class="active"' : "" %> href="/led/red">red</a></li>
<li><a <%= (led_status[:green]) ? 'class="active"' : "" %> href="/led/green">green</a></li>
<li><a <%= (led_status[:yellow]) ? 'class="active"' : "" %> href="/led/yellow">yellow</a></li>
</ul>
</div>
</body>
</html>