phantasmobile/app/templates/weekly_email.html

19 lines
387 B
HTML
Raw Normal View History

2023-09-23 14:38:28 +02:00
{% if week_title %}
<h1>{{ week_title }}</h1>
2023-09-26 19:37:18 +02:00
<br>
2023-09-23 14:38:28 +02:00
{% endif %}
{% for item in items %}
2023-09-23 17:31:46 +02:00
<div class="item">
<a href="{{ item.full_url }}">
<div class="info">
<h1>{{ item.title }}</h1>
<h2>{{ item.data.title }}</h2>
</div>
<div class="image">
<img src="{{ item.data.thumbnail }}">
</div>
</a>
</div>
2023-09-23 14:38:28 +02:00
{% endfor %}