summary refs log tree commit diff
path: root/res/templates/notif.html
diff options
context:
space:
mode:
Diffstat (limited to 'res/templates/notif.html')
-rw-r--r--res/templates/notif.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/res/templates/notif.html b/res/templates/notif.html
new file mode 100644
index 0000000000..648ff034b3
--- /dev/null
+++ b/res/templates/notif.html
@@ -0,0 +1,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>