2023-06-01 21:25:13 +00:00
|
|
|
|
2024-01-17 15:43:51 +00:00
|
|
|
{% extends "base.html" %}
|
2023-06-01 21:25:13 +00:00
|
|
|
|
2024-01-17 15:43:51 +00:00
|
|
|
{% block content %}
|
2023-06-01 21:25:13 +00:00
|
|
|
<center>
|
2024-01-17 15:43:51 +00:00
|
|
|
<img src="{{ img }}" alt="{{ title }}" style="max-width:98vw;">
|
|
|
|
<p>{{ entry_count }} Entries, {{ prizes }} Prizes</p>
|
2023-06-01 21:25:13 +00:00
|
|
|
<br>
|
2024-01-17 15:43:51 +00:00
|
|
|
{{ info|safe }}
|
2023-06-01 21:25:13 +00:00
|
|
|
<div class="ible-list">
|
2024-01-17 15:43:51 +00:00
|
|
|
{% for ible in entries %}
|
2023-06-01 21:25:13 +00:00
|
|
|
<div class="ible-list-item">
|
2024-01-17 15:43:51 +00:00
|
|
|
<a href="{{ ible.link }}" style="color:#bbc2cf;">
|
|
|
|
<img style="max-width:350px;" src="{{ ible.entry_img }}" alt="{{ ible.entry_title }}">
|
|
|
|
<p>{{ ible.entry_title }}</p>
|
2023-06-01 21:25:13 +00:00
|
|
|
</a>
|
2024-01-17 15:43:51 +00:00
|
|
|
<p>by <a href="{{ ible.author_link }}">{{ ible.author }}</a> in <a href="{{ ible.channel_link }}">{{ ible.channel }}</a></p>
|
|
|
|
<p>{{ ible.views }} Views</p>
|
2023-06-01 21:25:13 +00:00
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
</center>
|
2024-01-17 15:43:51 +00:00
|
|
|
{% endblock %}
|