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" %}
{% block title %}
YouTube Drops Channels
YouTube channels with rewards
{% endblock title %}
{% block content %}
<main>
<h1>YouTube Drops Channels</h1>
<p>Official channels from YouTube partner accounts where drops/rewards may be available.</p>
<h1>YouTube channels with rewards.</h1>
<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 %}
<h2>{{ group.partner }}</h2>
<ul>
{% for item in group.channels %}
<li>
<tr>
<td>
<a href="{{ item.url }}" rel="noopener" target="_blank">{{ item.channel }}</a>
</li>
</td>
<td>{{ group.partner }}</td>
</tr>
{% endfor %}
</ul>
{% endfor %}
</tbody>
</table>
</main>
{% endblock content %}