Update YouTube channels page to include rewards information and improve layout
Some checks failed
Deploy to Server / deploy (push) Failing after 9s

This commit is contained in:
Joakim Hellsén 2026-03-16 23:26:00 +01:00
commit f7d2d96507
Signed by: Joakim Hellsén
SSH key fingerprint: SHA256:/9h/CsExpFp+PRhsfA0xznFx2CGfTT5R/kpuFfUgEQk

View file

@ -1,20 +1,34 @@
{% extends "base.html" %} {% extends "base.html" %}
{% block title %} {% block title %}
YouTube Drops Channels YouTube channels with rewards
{% endblock title %} {% endblock title %}
{% block content %} {% block content %}
<main> <main>
<h1>YouTube Drops Channels</h1> <h1>YouTube channels with rewards.</h1>
<p>Official channels from YouTube partner accounts where drops/rewards may be available.</p> <p>
<a href="https://support.google.com/youtube/answer/9024948?hl=en&co=GENIE.Platform%3DAndroid"
rel="noopener"
target="_blank">YouTube Help Center</a> has the following channels listed where you can earn rewards:
</p>
<table>
<thead>
<tr>
<th>Channel</th>
<th>Partner</th>
</tr>
</thead>
<tbody>
{% for group in partner_groups %} {% for group in partner_groups %}
<h2>{{ group.partner }}</h2>
<ul>
{% for item in group.channels %} {% for item in group.channels %}
<li> <tr>
<td>
<a href="{{ item.url }}" rel="noopener" target="_blank">{{ item.channel }}</a> <a href="{{ item.url }}" rel="noopener" target="_blank">{{ item.channel }}</a>
</li> </td>
<td>{{ group.partner }}</td>
</tr>
{% endfor %} {% endfor %}
</ul>
{% endfor %} {% endfor %}
</tbody>
</table>
</main> </main>
{% endblock content %} {% endblock content %}