diff options
author | Biswakalyan Bhuyan <biswa@surgot.in> | 2024-09-19 15:33:11 +0530 |
---|---|---|
committer | Biswakalyan Bhuyan <biswa@surgot.in> | 2024-09-19 15:33:11 +0530 |
commit | a4e01da27c08e43a67b2618ad1e71c1f8f86d5cd (patch) | |
tree | 5b8f407dbb7e9d1ab2106ac0cc8564897e7a2098 /youtube/templates/home.html | |
download | yt-local-a4e01da27c08e43a67b2618ad1e71c1f8f86d5cd.tar.gz yt-local-a4e01da27c08e43a67b2618ad1e71c1f8f86d5cd.tar.bz2 yt-local-a4e01da27c08e43a67b2618ad1e71c1f8f86d5cd.zip |
Diffstat (limited to 'youtube/templates/home.html')
-rw-r--r-- | youtube/templates/home.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/youtube/templates/home.html b/youtube/templates/home.html new file mode 100644 index 0000000..0adac56 --- /dev/null +++ b/youtube/templates/home.html @@ -0,0 +1,13 @@ +{% set page_title = title %} +{% extends "base.html" %} +{% block style %} + <link href="/youtube.com/static/home.css" rel="stylesheet"> +{% endblock style %} +{% block main %} + <ul> + <li><a href="/youtube.com/playlists">Local playlists</a></li> + <li><a href="/youtube.com/subscriptions">Subscriptions</a></li> + <li><a href="/youtube.com/subscription_manager">Subscription Manager</a></li> + <li><a href="/youtube.com/settings">Settings</a></li> + </ul> +{% endblock main %} |