Skip to content

Commit

Permalink
Fix channels
Browse files Browse the repository at this point in the history
  • Loading branch information
M4RC02U1F4A4 committed May 30, 2023
1 parent 50e0aaf commit 4bc7dfd
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions app/templates/channels.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,27 +3,27 @@

<div class="container-fluid">
<div class="row">
<div class="col-lg-2 position-relative">
<div class="col-xl-2">
<div class="sticky-top">
{% include "sidebar.html" %}
</div>
</div>
<div class="col-lg-10 position-relative">
<div class="row">
<div class="col-xl-10">
<div class="row justify-content-center justify-content-xl-start">
{% for channel in channels %}
<div class="col-lg-3 mt-5 position-relative">
<div class="col channel-card mt-5 position-relative">
<div class="row">
<div class="col-lg-3">
<div class="col-md-5">
<img class="logoc-rad" src="{{ channel['logo'] }}" width="103">
</div>
<div class="col-lg-8 text-center">
<div class="col">
<div class="channel-title fw-bold">{{ channel['title'] }}</div>
<div>{{ channel['_id']|get_subscriberCount }} subscribers</div>
<div>{{ channel['videoCount'] }} videos</div>
<div>{{ channel['viewCount'] }} views</div>
</div>
</div>
<a class="stretched-link" href="https://www.youtube.com/channel/{{ channel['_id'] }}" target="_blank"></a>
<!-- <a class="stretched-link" href="https://www.youtube.com/channel/{{ channel['_id'] }}" target="_blank"></a> -->
</div>
{% endfor %}
</div>
Expand Down

0 comments on commit 4bc7dfd

Please sign in to comment.