aboutsummaryrefslogtreecommitdiffstats
path: root/yt_channel_about_template.html
diff options
context:
space:
mode:
authorJames Taylor <user234683@users.noreply.github.com>2019-07-06 18:36:09 -0700
committerJames Taylor <user234683@users.noreply.github.com>2019-07-06 19:11:15 -0700
commit64434b02ca50c2a6324caa1355559bd881ba687e (patch)
treea16fbb9f78ec0b027b13d723a30873f4aaeb92ad /yt_channel_about_template.html
parent24553bfb4f1a5f28f6d51320d2cf02380281124a (diff)
downloadyt-local-64434b02ca50c2a6324caa1355559bd881ba687e.tar.lz
yt-local-64434b02ca50c2a6324caa1355559bd881ba687e.tar.xz
yt-local-64434b02ca50c2a6324caa1355559bd881ba687e.zip
Convert channel page to flask framework
Diffstat (limited to 'yt_channel_about_template.html')
-rw-r--r--yt_channel_about_template.html78
1 files changed, 0 insertions, 78 deletions
diff --git a/yt_channel_about_template.html b/yt_channel_about_template.html
deleted file mode 100644
index 221b838..0000000
--- a/yt_channel_about_template.html
+++ /dev/null
@@ -1,78 +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-rows: 0fr 0fr 1fr;
- grid-template-columns: 0fr 1fr;
- }
- main .avatar{
- grid-row:1;
- grid-column:1;
- height:200px;
- width:200px;
- }
- main .title{
- grid-row:1;
- grid-column:2;
- }
- main .channel-tabs{
- grid-row:2;
- grid-column: 1 / span 2;
-
- display:grid;
- grid-auto-flow: column;
- justify-content:start;
-
- background-color: #aaaaaa;
- padding: 3px;
- }
- main .channel-info{
- grid-row: 3;
- grid-column: 1 / span 3;
- }
- .tab{
- padding: 5px 75px;
- }
- .description{
- white-space: pre-wrap;
- min-width: 0;
-
- }
- </style>
- </head>
- <body>
-$header
- <main>
- <img class="avatar" src="$avatar">
- <h2 class="title">$channel_title</h2>
- <nav class="channel-tabs">
-$channel_tabs
- </nav>
- <div class="channel-info">
- <ul>
-$stats
-
- </ul>
- <hr>
- <h3>Description</h3>
- <span class="description">$description</span>
- <hr>
- <ul>
-$links
- </ul>
- </div>
- </main>
-
-
-
-
-
- </body>
-</html>