From 163814d35cbcad575d0deec54b31b94e2bbaaebb Mon Sep 17 00:00:00 2001 From: James Taylor Date: Sat, 10 Aug 2019 00:09:03 -0700 Subject: Convert subscriptions page to flask framework --- youtube/templates/subscriptions.html | 97 ++++++++++++++++++++++++++++++++++++ 1 file changed, 97 insertions(+) create mode 100644 youtube/templates/subscriptions.html (limited to 'youtube/templates/subscriptions.html') diff --git a/youtube/templates/subscriptions.html b/youtube/templates/subscriptions.html new file mode 100644 index 0000000..a3227b1 --- /dev/null +++ b/youtube/templates/subscriptions.html @@ -0,0 +1,97 @@ +{% set page_title = 'Subscriptions' %} +{% extends "base.html" %} +{% import "common_elements.html" as common_elements %} + +{% block style %} + main{ + display:flex; + flex-direction: row; + } + .item-grid{ + flex-grow: 1; + } + .subscriptions-sidebar{ + flex-basis: 300px; + background-color: #dadada; + border-left: 2px; + } + .sidebar-links{ + display:flex; + justify-content: space-between; + padding-left:10px; + padding-right: 10px; + } + + .sidebar-list{ + list-style: none; + padding-left:10px; + padding-right: 10px; + } + .sidebar-list-item{ + display:flex; + justify-content: space-between; + margin-bottom: 5px; + } + .sub-refresh-list .sidebar-item-name{ + text-overflow: clip; + white-space: nowrap; + overflow: hidden; + max-width: 200px; + } + .muted{ + background-color: #888888; + } +{% endblock style %} + +{% block main %} + + +
+ + +
+ + + + +
+ + +{% endblock main %} -- cgit v1.2.3 From b469536ce6cbdcdfd966a15aa1ce45d8f5b42db9 Mon Sep 17 00:00:00 2001 From: James Taylor Date: Sun, 11 Aug 2019 18:17:19 -0700 Subject: Ability to only show videos from channels with specific tag --- youtube/templates/subscriptions.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'youtube/templates/subscriptions.html') diff --git a/youtube/templates/subscriptions.html b/youtube/templates/subscriptions.html index a3227b1..442bd88 100644 --- a/youtube/templates/subscriptions.html +++ b/youtube/templates/subscriptions.html @@ -64,7 +64,7 @@