imap-archiver/templates/index.html

15 lines
230 B
HTML

<!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>