ttvdrops/templates/youtube/index.html

34 lines
1.2 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"
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>Organization</th>
</tr>
</thead>
<tbody>
{% for group in organization_groups %}
{% for item in group.channels %}
<tr>
<td>
<a href="{{ item.url }}" rel="noopener" target="_blank">{{ item.channel }}</a>
</td>
<td>{{ group.organization }}</td>
</tr>
{% endfor %}
{% endfor %}
</tbody>
</table>
</main>
{% endblock content %}