aboutsummaryrefslogtreecommitdiffstats
path: root/yt_channel_about_template.html
blob: 63af6f1baa868eb09093706a8083f1a4a3a99cb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>$page_title</title>
        <link href="/youtube.com/shared.css" type="text/css" rel="stylesheet">
        <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;
                }
                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: #bcbcbc;
                    padding: 3px;
                }
                main .channel-info{
                    grid-row: 3;
                    grid-column: 1 / span 3;
                }
                .tab{
                    padding: 5px 75px;
                }
                .description{
                    white-space: pre-line;
                    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>
$links
            </div>
        </main>
    
    
    
    
    
    </body>
</html>