blob: 61a6888dffbbcf18a2087b9ad9a59c8d006f6a6a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{% set page_title = 'Local playlists' %}
{% extends "base.html" %}
{% block style %}
<link href="/youtube.com/static/home.css" rel="stylesheet"/>
{% endblock style %}
{% block main %}
<ul>
{% for playlist_name, playlist_url in playlists %}
<li><a href="{{ playlist_url }}">{{ playlist_name }}</a></li>
{% endfor %}
</ul>
{% endblock main %}
|