<!doctype html>
<html>
<head>
<title>Email Archive</title>
</head>
<body>
<h3>Accounts</h3>
<ul>
{% for account in accounts %}
<li><a href="/{{ account }}">{{ account }}</a></li>
{% endfor %}
</ul>
</body>
</html>