phantasmobile/app/templates/weekly_email.html

19 lines
752 B
HTML
Raw Normal View History

2023-09-23 14:38:28 +02:00
{% if week_title %}
2023-10-01 09:16:27 +02:00
<a style="color: #F0F0F0;text-decoration: underline;" href="{{ week_link }}">{{ week_title }}</a>
2023-09-26 19:37:18 +02:00
<br>
2023-09-23 14:38:28 +02:00
{% endif %}
{% for item in items %}
2023-09-28 12:56:45 +02:00
<div class="item" style="background-color: #101010;color: #CCCCCC;border-bottom: 1px solid blueviolet;">
<a style="color: #CCCCCC;text-decoration: none;" href="{{ item.full_url }}">
2023-09-23 17:31:46 +02:00
<div class="info">
2023-09-28 12:56:45 +02:00
<h1 style="color: #F0F0F0;text-decoration: underline;font-size: 18px;font-weight: bold">{{ item.title }}</h1>
<h2 style="color: #F0F0F0;font-size: 16px;">{{ item.data.title }}</h2>
2023-09-23 17:31:46 +02:00
</div>
<div class="image">
2023-09-28 12:56:45 +02:00
<img style="max-width: 100%;height:auto;" src="{{ item.data.thumbnail }}">
2023-09-23 17:31:46 +02:00
</div>
</a>
</div>
2023-09-23 14:38:28 +02:00
{% endfor %}