structables/templates/contest.html

23 lines
705 B
HTML
Raw Normal View History

2023-06-01 21:25:13 +00:00
{% extends "base.html" %}
2023-06-01 21:25:13 +00:00
{% block content %}
2023-06-01 21:25:13 +00:00
<center>
<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>
{{ info|safe }}
2023-06-01 21:25:13 +00:00
<div class="ible-list">
{% for ible in entries %}
2023-06-01 21:25:13 +00:00
<div class="ible-list-item">
<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>
<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>
{% endblock %}