Update YouTube channels page to include rewards information and improve layout
Some checks failed
Deploy to Server / deploy (push) Failing after 9s
Some checks failed
Deploy to Server / deploy (push) Failing after 9s
This commit is contained in:
parent
05c68a42e9
commit
f7d2d96507
1 changed files with 26 additions and 12 deletions
|
|
@ -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 %}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue