<!doctype html>
<html>
<head><meta charset="utf-8"><title>Repositories</title></head>
<style>
  body {
    background-color: black;
    color: white;
  }
  table{
    text-align: left;
    min-width:70em;
  }
  a:link {
    color: green;
    background-color: transparent;
  }
</style>
<body>
  <h2>Repositories</h2>
	<hr>
  <table>
    <tbody>
      <tr>
        <th>Name</th>
        <th>Description</th>
        <th>Last commit</th>
      </tr>
      {% for r in repos %}
      <tr>
        <td><a href="{{ r.name }}">{{ r.name }}</a></td>
        <td>{{ r.desc }}</td>
        <td>{{ r.lastcommit }}</td>
      </tr>
      {% endfor %}
    </tbody>
  </table>
</body>
</html>