led-hands-rpi/views/index.erb

28 lines
841 B
Plaintext
Raw Normal View History

2019-02-23 21:12:06 -06:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>LED Manager</title>
2019-02-23 22:35:56 -06:00
<link href="main.css" rel="stylesheet">
2019-02-23 21:12:06 -06:00
</head>
<body>
2019-02-23 22:35:56 -06:00
<div class="container">
<h1>LED Manager</h1>
2019-02-23 21:12:06 -06:00
2019-02-23 22:35:56 -06:00
<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>
2019-02-23 21:12:06 -06:00
</body>
</html>