notif_mail.html 867 B

12345678910111213141516171819202122232425
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <style type="text/css">
  5. {% include 'mail.css' without context %}
  6. </style>
  7. </head>
  8. <body>
  9. <div id="page">
  10. <div class="header">
  11. <img class="logo" src="http://matrix.org/img/vector-logo-email.png" width="64" height="83" alt="Vector"/>
  12. <div class="salutation">Hi {{ user_display_name }},</div>
  13. <div class="summarytext">{{ summary_text|replace("%app%", "Vector") }}</div>
  14. </div>
  15. <div class="content">
  16. {% for room in rooms %}
  17. {% include 'room.html' with context %}
  18. {% endfor %}
  19. </div>
  20. <div class="footer">
  21. <a href="{{ unsubscribe_link }}">Unsubscribe</a>
  22. </div>
  23. </div>
  24. </body>
  25. </html>