summary refs log tree commit diff
path: root/res/templates/notif_mail.html
blob: fbfb0a767c88f073bb48ea539149dfe90f5619ca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!doctype html>
<html lang="en">
    <body>
        <div className="salutation">Hi {{ user_display_name }},</div>
        <div className="summarytext">{{ summary_text }}</div>
        <div class="content">
            {% for room in rooms %}
                {% include 'room.html' with context %}
            {% endfor %}
        </div>
        <div class="footer">
            <a href="{{ unsubscribe_link }}">Unsubscribe</a>
        </div>
    </body>
</html>