diff options
author | James Taylor <user234683@users.noreply.github.com> | 2018-08-06 19:25:14 -0700 |
---|---|---|
committer | James Taylor <user234683@users.noreply.github.com> | 2018-08-06 19:25:14 -0700 |
commit | b02b5b87b3bae22a9c2667c5b1652ddd7e5afbcb (patch) | |
tree | 320b87f9dfb9f3911e9b726e860e11b6dad40ff5 /yt_watch_template.html | |
parent | 09837e9fa6a7c905699dc0f62fcbe466ca9a21c5 (diff) | |
download | yt-local-b02b5b87b3bae22a9c2667c5b1652ddd7e5afbcb.tar.lz yt-local-b02b5b87b3bae22a9c2667c5b1652ddd7e5afbcb.tar.xz yt-local-b02b5b87b3bae22a9c2667c5b1652ddd7e5afbcb.zip |
list music used in video if available
Diffstat (limited to 'yt_watch_template.html')
-rw-r--r-- | yt_watch_template.html | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/yt_watch_template.html b/yt_watch_template.html index 7d5f4ae..44e5892 100644 --- a/yt_watch_template.html +++ b/yt_watch_template.html @@ -23,6 +23,21 @@ .full-item{ grid-column: 2; } + .music-list{ + background-color: #d0d0d0; + } + .music-list table,th,td{ + border: 1px solid; + } + .music-list th,td{ + padding-left:4px; + padding-right:5px; + } + .music-list caption{ + text-align:left; + font-weight:bold; + margin-bottom:5px; + } .comments{ grid-column: 1 / span 2; grid-row: 6; @@ -106,7 +121,9 @@ $download_options <input class="checkbox" name="video_info_list" value="$video_info" form="playlist-edit" type="checkbox"> <span class="description">$description</span> - + <div class="music-list"> +$music_list + </div> <section class="comments"> $comments </section> |