Add WIP email template files
parent
c10ed26c30
commit
19d6b6cd7a
|
@ -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>
|
|
@ -0,0 +1,6 @@
|
|||
<div class="room">
|
||||
<h2>{{ room.title }}</h2>
|
||||
<div>
|
||||
Things have happened in this room
|
||||
</div>
|
||||
</div>
|
Loading…
Reference in New Issue