mail-accounts/templates/home.html
2023-08-16 22:12:14 +02:00

25 lines
615 B
HTML

<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>{{ title }}</title>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css"
/>
</head>
<body>
<section class="section">
<div class="container">
<h1 class="title is-1">Mail management</h1>
<h2 class="title is-2">Mails</h2>
<ul>
{% for mail in mails %}
<li>{{mail.mail}}</li>
{% endfor %}
</ul>
</div>
</section>
</body>
</html>