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
|
|
|
<h1>{{ title }}</h1>
|
2023-06-01 21:25:13 +00:00
|
|
|
|
2024-01-17 15:43:51 +00:00
|
|
|
<p>by <a href="{{ author_link }}">{{ author }}</a> in <a href="{{ category_link }}">{{ category }}</a> > <a
|
|
|
|
href="{{ channel_link }}">{{ channel }}</a></p>
|
|
|
|
<p>{{ views }} Views, {{ favorites }} Favorites</p>
|
2023-06-01 21:25:13 +00:00
|
|
|
|
|
|
|
<div style="max-width:90%;">
|
2024-01-17 15:43:51 +00:00
|
|
|
{% for thumbnail in thumbnails %}
|
2023-06-01 21:25:13 +00:00
|
|
|
<div class="ible-list-item">
|
2024-01-17 15:43:51 +00:00
|
|
|
{% if thumbnail.title == '' %}
|
|
|
|
<a href="{{ thumbnail.link }}" style="color:#bbc2cf;">
|
|
|
|
<img style="max-width:350px;" src="{{ thumbnail.img }}" alt="{{ thumbnail.author }}">
|
|
|
|
<p>{{ thumbnail.author }}</p>
|
2023-06-01 21:25:13 +00:00
|
|
|
</a>
|
2024-01-17 15:43:51 +00:00
|
|
|
<p>by <a href="{{ thumbnail.author_link }}">{{ thumbnail.author }}</a> in <a href="{{ thumbnail.channel_link }}">{{
|
|
|
|
thumbnail.channel }}</a> </p>
|
2023-06-01 21:25:13 +00:00
|
|
|
{% else %}
|
2024-01-17 15:43:51 +00:00
|
|
|
{{ thumbnail.text|safe }}
|
2023-06-01 21:25:13 +00:00
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
</center>
|
2024-01-17 15:43:51 +00:00
|
|
|
{% endblock %}
|