structables/templates/collection.html

28 lines
907 B
HTML
Raw Normal View History

{% extends "base.html" %}
2023-06-01 21:25:13 +00:00
{% block content %}
2023-06-01 21:25:13 +00:00
<center>
<h1>{{ title }}</h1>
2023-06-01 21:25:13 +00:00
<p>by <a href="{{ author_link }}">{{ author }}</a> in <a href="{{ category_link }}">{{ category }}</a> &gt; <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%;">
{% for thumbnail in thumbnails %}
2023-06-01 21:25:13 +00:00
<div class="ible-list-item">
{% 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>
<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 %}
{{ thumbnail.text|safe }}
2023-06-01 21:25:13 +00:00
{% endif %}
</div>
{% endfor %}
</div>
</center>
{% endblock %}