mirror of
https://mau.dev/maunium/synapse.git
synced 2024-10-01 01:36:05 -04:00
15 lines
325 B
HTML
15 lines
325 B
HTML
<!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>
|