-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
82 lines (67 loc) · 2.13 KB
/
index.html
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
73
74
75
76
77
78
79
80
81
82
<html>
<head>
<title>YouTube</title>
<link rel="stylesheet" type="text/css" href="./css/core.css"/>
<script src="./script/lib/actions.js"></script>
<script src="./script/lib/youtube-api.js"></script>
<script src="./script/lib/ui.js"></script>
<script src="./script/core.js"></script>
</head>
<body>
<header>
<div class="control">
<button id="sidebar-toggle" title="Toggle sidebar"></button>
<a id="youtube-logo" href="/">
<h1 class="title">YouTube</h1>
<span class="country">SE</span>
</a>
</div>
<form id="search-bar">
<input name="query" type="text"/><button type="submit"></button>
</form>
<section id="profile">
<button class="upload">Upload</button>
<button class="notifications">Notifications</button>
<button class="user">Meth Meth Method</button>
</section>
</header>
<template class="player">
<div class="player">
<div class="video-window">
</div>
<h1 class="title"></h1>
<a href="#channel" class="channel"></a>
<section class="details">
<div class="date"></div>
<div class="description"></div>
</section>
<section class="related">
</section>
</div>
</template>
<template class="video">
<article class="video" data-video-id data-channel-id>
<a href="#video">
<div class="image">
<img src=""/>
</div>
<div class="title"></div>
</a>
<a href="#channel" class="channel"></a>
<div class="stats">
<span class="views"></span>
<span class="date"></span>
</div>
</article>
</template>
<template class="video-group">
<section class="videos">
<h2 class="title"></h2>
<div class="video-list">
</div>
</section>
</template>
<div id="content">
</div>
</body>
</html>