ttvdrops/templates/youtube/index.html
Joakim Helleśen 428f49879d
All checks were successful
Deploy to Server / deploy (push) Successful in 20s
Add breadcrumb navigation
2026-03-22 05:09:27 +01:00

32 lines
1.1 KiB
HTML

{% extends "base.html" %}
{% block title %}
{{ page_title }}
{% endblock title %}
{% block content %}
<main>
<h1>YouTube channels with rewards.</h1>
<p>
<a href="https://support.google.com/youtube/answer/9024948?hl=en&co=GENIE.Platform%3DAndroid">YouTube Help Center</a> has the following channels listed where you can earn rewards:
</p>
<table>
<thead>
<tr>
<th>Channel</th>
<th>Organization</th>
</tr>
</thead>
<tbody>
{% for group in organization_groups %}
{% for item in group.channels %}
<tr>
<td>
<a href="{{ item.url }}">{{ item.channel }}</a>
</td>
<td>{{ group.organization }}</td>
</tr>
{% endfor %}
{% endfor %}
</tbody>
</table>
</main>
{% endblock content %}