phantasmobile/app/templates/weekly_email.html

18 lines
426 B
HTML
Raw Normal View History

2023-09-23 12:38:28 +00:00
{% if week_title %}
<h1>{{ week_title }}</h1>
{% endif %}
{% for item in items %}
<div class="item">
<a href="{{ item.full_url }}">
<div class="info">
<h1>{{ item.title }}</h1>
<h2>{{ item.data.title }}</h2>
</div>
<div class="image">
2023-09-23 12:58:41 +00:00
<img src="{{ item.data.thumbnail }}">
2023-09-23 12:38:28 +00:00
</div>
</a>
</div>
{% endfor %}