diff options
author | James Taylor <user234683@users.noreply.github.com> | 2019-07-04 18:08:14 -0700 |
---|---|---|
committer | James Taylor <user234683@users.noreply.github.com> | 2019-07-04 18:08:14 -0700 |
commit | d105d4520ff0bf529cfb18c9c16a22900ab7f481 (patch) | |
tree | 0d10795631c55ccd57e0710b1007a81b635f866e /yt_playlist_template.html | |
parent | 1c724f4f28804f3f8e41d222576e6fc5d7e68f75 (diff) | |
download | yt-local-d105d4520ff0bf529cfb18c9c16a22900ab7f481.tar.lz yt-local-d105d4520ff0bf529cfb18c9c16a22900ab7f481.tar.xz yt-local-d105d4520ff0bf529cfb18c9c16a22900ab7f481.zip |
Convert playlist page to flask framework
Diffstat (limited to 'yt_playlist_template.html')
-rw-r--r-- | yt_playlist_template.html | 115 |
1 files changed, 0 insertions, 115 deletions
diff --git a/yt_playlist_template.html b/yt_playlist_template.html deleted file mode 100644 index 0e33261..0000000 --- a/yt_playlist_template.html +++ /dev/null @@ -1,115 +0,0 @@ -<!DOCTYPE html> -<html> - <head> - <meta charset="utf-8"> - <title>$page_title</title> - <link href="/youtube.com/shared.css" type="text/css" rel="stylesheet"> - <link href="/youtube.com/favicon.ico" type="image/x-icon" rel="icon"> - <link title="Youtube local" href="/youtube.com/opensearch.xml" rel="search" type="application/opensearchdescription+xml"> - <style type="text/css"> - main{ - display:grid; - grid-template-columns: 3fr 1fr; - } - - - - #left{ - grid-column: 1; - grid-row: 1; - - display: grid; - grid-template-columns: 1fr 800px; - grid-template-rows: 0fr 1fr 0fr; - } - .playlist-metadata{ - grid-column:2; - grid-row:1; - - display:grid; - grid-template-columns: 0fr 1fr; - } - .playlist-thumbnail{ - grid-row: 1 / span 5; - grid-column:1; - justify-self:start; - width:250px; - margin-right: 10px; - } - .playlist-title{ - grid-row: 1; - grid-column:2; - } - .playlist-author{ - grid-row:2; - grid-column:2; - } - .playlist-stats{ - grid-row:3; - grid-column:2; - } - - .playlist-description{ - grid-row:4; - grid-column:2; - min-width:0px; - white-space: pre-line; - } - .page-button-row{ - grid-row: 3; - grid-column: 2; - justify-self: center; - } - - - #right{ - grid-column: 2; - grid-row: 1; - - } - #results{ - - grid-row: 2; - grid-column: 2; - margin-top:10px; - - display: grid; - grid-auto-rows: 0fr; - grid-row-gap: 10px; - - } - </style> - </head> - <body> -$header - <main> - <div id="left"> - <div class="playlist-metadata"> - <img class="playlist-thumbnail" src="$thumbnail"> - <h2 class="playlist-title">$title</h2> - <a class="playlist-author" href="$author_url">$author</a> - <div class="playlist-stats"> -$stats - </div> - <div class="playlist-description">$description</div> - </div> - - <div id="results"> -$videos - </div> - <nav class="page-button-row"> -$page_buttons - </nav> - </div> - - - <div id="right"> - - </div> - </main> - - - - - </body> -</html> |