phantasmobile/app/templates/weekly_email.html

19 lines
764 B
HTML
Raw Normal View History

2023-09-23 12:38:28 +00:00
{% if week_title %}
2023-09-28 10:56:45 +00:00
<h1 style="color: #F0F0F0;text-decoration: underline;font-size: 18px;font-weight: bold">{{ week_title }}</h1>
2023-09-26 17:37:18 +00:00
<br>
2023-09-23 12:38:28 +00:00
{% endif %}
{% for item in items %}
2023-09-28 10:56:45 +00: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 15:31:46 +00:00
<div class="info">
2023-09-28 10:56:45 +00: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 15:31:46 +00:00
</div>
<div class="image">
2023-09-28 10:56:45 +00:00
<img style="max-width: 100%;height:auto;" src="{{ item.data.thumbnail }}">
2023-09-23 15:31:46 +00:00
</div>
</a>
</div>
2023-09-23 12:38:28 +00:00
{% endfor %}