2023-09-23 12:38:28 +00:00
|
|
|
{% if week_title %}
|
2023-10-15 16:12:16 +00:00
|
|
|
<a style="color: #F0F0F0;text-decoration: underline;font-size: 18px;font-weight: bold" href="{{ week_link }}">{{ week_title }}</a>
|
2024-02-06 16:47:54 +00:00
|
|
|
{% if week_byline %}<br>
|
|
|
|
{{ week_byline }}
|
|
|
|
{% endif %}
|
2023-10-15 16:12:16 +00:00
|
|
|
<br>
|
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 %}
|
|
|
|
|