synapse/res/templates/notif.html

16 lines
418 B
HTML
Raw Normal View History

2016-04-21 18:22:53 +00:00
<!doctype html>
<html lang="en">
<body>
<div className="salutation">Hi {{ user_display_name }},</div>
<div className="summarytext">{{ summary_text }}</div>
2016-04-21 18:22:53 +00:00
<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>