1
0
Fork 0
mirror of https://github.com/element-hq/synapse.git synced 2025-03-09 09:26:50 +00:00
synapse/res/templates/notif.html

15 lines
325 B
HTML
Raw Normal View History

2016-04-21 19:22:53 +01:00
<!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>