imap-archiver/templates/index.html

15 lines
230 B
HTML
Raw Normal View History

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