<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>Conference check</title>
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <style>
    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      font-size: 1rem;
      font-weight: 400;
      line-height: 1.5;
      color: #212529;
      text-align: left;
      background-color: #fff;
    }
    h1 {
      font-size: 2.5rem;
      font-weight: 500;
      margin-top: 0;
      margin-bottom: 0.5rem;
    }
    a {
      color: #0d6efd;
      text-decoration: none;
    }
    a:hover {
      text-decoration: underline;
    }
    .text-right {
      text-align: right;
    }
  </style>
</head>

<body>
  <h1>Conference check</h1>
  <p>Date when website went live.</p>
  <table>
  {% for l in live %}
    <td class="text-right">
      {{ l.live.strftime("%a, %d %b %Y") }}
      🌍🎉
    </td>
    <td>
      <a href="{{ l.url }}">{{ l.conference }} {{ l.year }}</a>
    </td>
    </tr>
  {% endfor %}
  </table>
</body>
</html>