summary refs log tree commit diff
path: root/res/templates/notif.html
blob: 648ff034b3cb3444f0e4d73e4cd42777b77ddb40 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!doctype html>
<html lang="en">
  <body>
    <h1>{{ summaryText }}</h1>
    <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>