3d2a-index/odyseescraper/templates/channel_list.html

16 lines
508 B
HTML

{% extends "base.html" %}
{% block content %}
<h1>Channels</h1>
<p>If you'd like to browse all releases, click <a href="{% url "allreleases" %}">here</a>.</p>
<div class="cardcontainer widecardcontainer">
{% for channel in object_list %}
<div class="card">
<img src="{{ channel.thumbnail }}" class="cardthumbnail" />
<a href="https://odysee.com/{{ channel.handle }}"><h2>{{ channel.name }}</h2></a>
<p class="description">{{ channel.handle }}</p>
</div>
{% endfor %}
</div>
{% endblock content %}