mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-12-30 13:46:11 -05:00
Add WIP email template files
This commit is contained in:
parent
c10ed26c30
commit
19d6b6cd7a
14
res/templates/notif.html
Normal file
14
res/templates/notif.html
Normal 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
6
res/templates/room.html
Normal file
@ -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
Block a user