diff options
author | James Taylor <user234683@users.noreply.github.com> | 2019-07-19 22:27:10 -0700 |
---|---|---|
committer | James Taylor <user234683@users.noreply.github.com> | 2019-07-19 22:27:10 -0700 |
commit | 8cad77ad0d7e0a0d07629087e2ee1709688cb58d (patch) | |
tree | a0fbcb06df86e8174d1d28a280c8748fcec7516e /yt_comments_template.html | |
parent | b854dab314267bd7f4677520b83a4e8abd0a1a6a (diff) | |
download | yt-local-8cad77ad0d7e0a0d07629087e2ee1709688cb58d.tar.lz yt-local-8cad77ad0d7e0a0d07629087e2ee1709688cb58d.tar.xz yt-local-8cad77ad0d7e0a0d07629087e2ee1709688cb58d.zip |
Convert comments to flask framework
Diffstat (limited to 'yt_comments_template.html')
-rw-r--r-- | yt_comments_template.html | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/yt_comments_template.html b/yt_comments_template.html deleted file mode 100644 index cdb11d0..0000000 --- a/yt_comments_template.html +++ /dev/null @@ -1,40 +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/comments.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 2fr; - } - #left{ - background-color:#bcbcbc; - - display: grid; - grid-column: 1; - grid-row: 1; - grid-template-columns: 1fr 640px; - grid-template-rows: 0fr 0fr 0fr; - } - .comments-area{ - grid-column:2; - } - .comment{ - width:640px; - } - </style> - </head> - <body> -$header - <main> - <div id="left"> -$comments_area - </div> - </main> - </body> -</html> |