diff options
author | James Taylor <user234683@users.noreply.github.com> | 2019-12-20 12:44:42 -0800 |
---|---|---|
committer | James Taylor <user234683@users.noreply.github.com> | 2019-12-20 12:44:42 -0800 |
commit | c3321d31d0501f23f81a711ee8532ee4e0dc6978 (patch) | |
tree | 2e90a0779b2745b0c2a6bb9310cc056f4dc643d4 /youtube/templates | |
parent | b4406df9cf33c53b6e942e6a5c72d955f57c4b5f (diff) | |
download | yt-local-c3321d31d0501f23f81a711ee8532ee4e0dc6978.tar.lz yt-local-c3321d31d0501f23f81a711ee8532ee4e0dc6978.tar.xz yt-local-c3321d31d0501f23f81a711ee8532ee4e0dc6978.zip |
Subscriptions: Display selected tag above videos.
Otherwise, it wasn't clear enough that a tag was selected.
Diffstat (limited to 'youtube/templates')
-rw-r--r-- | youtube/templates/subscriptions.html | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/youtube/templates/subscriptions.html b/youtube/templates/subscriptions.html index 12430a5..a4f294a 100644 --- a/youtube/templates/subscriptions.html +++ b/youtube/templates/subscriptions.html @@ -12,6 +12,9 @@ padding-left: 10px; padding-top: 10px; } + .current-tag{ + margin-bottom:10px; + } .video-section .page-button-row{ justify-content: center; } @@ -47,6 +50,9 @@ {% block main %} <div class="video-section"> + {% if current_tag %} + <h2 class="current-tag">{{ current_tag }}</h2> + {% endif %} <nav class="item-grid"> {% for video_info in videos %} {{ common_elements.item(video_info) }} |