notif_mail.html 666 B

12345678910111213141516171819202122
  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 className="salutation">Hi {{ user_display_name }},</div>
  11. <div className="summarytext">{{ summary_text }}</div>
  12. <div class="content">
  13. {% for room in rooms %}
  14. {% include 'room.html' with context %}
  15. {% endfor %}
  16. </div>
  17. <div class="footer">
  18. <a href="{{ unsubscribe_link }}">Unsubscribe</a>
  19. </div>
  20. </div>
  21. </body>
  22. </html>