extrapole
clone your own copy | download snapshot

Snapshots | iceberg

No images in this repository’s iceberg at this time

Inside this repository

maildir_index.html
text/html

Download raw (263 bytes)

<!DOCTYPE html>
<html>
<head>
</head>
<body>
{% for message in messages %}
<h4>{{message.subject}}</h4>
<div class="tags">
    {% for tag in message.tags %}
    <span>{{tag}}</span>
    {% endfor %}
</div> 
<div>{{message.body}}</div>
{% endfor %}
</body>
</html>