index.erb 364 B

123456789101112131415161718
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <title>Is Hacklabbo open?</title>
  5. <style>
  6. body {
  7. text-align: center;
  8. }
  9. .date {
  10. font-size: 9pt;
  11. }
  12. </style>
  13. </head>
  14. <body>
  15. <h1><%= state[:open] ? "yes" : "no" %></h1>
  16. <em class="date">last update <%= state[:date].nil? ? "never" : state[:date].to_s %></em>
  17. </body>
  18. </html>