Add YouTube
This commit is contained in:
parent
ea242955d9
commit
5bdee66207
12 changed files with 214 additions and 1 deletions
20
templates/youtube/index.html
Normal file
20
templates/youtube/index.html
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{% extends "base.html" %}
|
||||
{% block title %}
|
||||
YouTube Drops Channels
|
||||
{% endblock title %}
|
||||
{% block content %}
|
||||
<main>
|
||||
<h1>YouTube Drops Channels</h1>
|
||||
<p>Official channels from YouTube partner accounts where drops/rewards may be available.</p>
|
||||
{% for group in partner_groups %}
|
||||
<h2>{{ group.partner }}</h2>
|
||||
<ul>
|
||||
{% for item in group.channels %}
|
||||
<li>
|
||||
<a href="{{ item.url }}" rel="noopener" target="_blank">{{ item.channel }}</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endfor %}
|
||||
</main>
|
||||
{% endblock content %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue