2024-03-06 14:25:36 -07:00
|
|
|
<!doctype html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2024-07-18 18:21:05 -06:00
|
|
|
<title>Email Archive</title>
|
2024-03-06 14:25:36 -07:00
|
|
|
</head>
|
|
|
|
<body>
|
2024-07-18 18:21:05 -06:00
|
|
|
<h3>Accounts</h3>
|
2024-03-06 14:25:36 -07:00
|
|
|
<ul>
|
2024-07-18 18:21:05 -06:00
|
|
|
{% for account in accounts %}
|
|
|
|
<li><a href="/{{ account }}">{{ account }}</a></li>
|
2024-03-06 14:25:36 -07:00
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
</body>
|
|
|
|
</html>
|