Add WIP email template files

This commit is contained in:
David Baker 2016-04-21 19:22:53 +01:00
parent c10ed26c30
commit 19d6b6cd7a
2 changed files with 20 additions and 0 deletions

14
res/templates/notif.html Normal file
View File

@ -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>

6
res/templates/room.html Normal file
View File

@ -0,0 +1,6 @@
<div class="room">
<h2>{{ room.title }}</h2>
<div>
Things have happened in this room
</div>
</div>