-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (41 loc) · 1.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gitting Started</title>
<link rel="stylesheet" href="styles/vendor.css">
<link rel="stylesheet" href="styles/main.css">
</head>
<body class="git-playlist-app">
<div class="top-bar">
<h1>Gitting Started</h1>
</div>
<div class="container">
<div id="video-container" class="video-container">
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4>Learning Modules: Git</h4>
</div>
<ul id="playlist" class="list-group playlist">
</ul>
</div>
</div>
<script src="scripts/main.js"></script>
<script type="text/template" id="player-template">
<video controls class="video-player" width="1280" height="720">
<source src="<%= source %>" type="<%= type %>"/>
<track src="<%= captions.src %>" srclang="<%= captions.srclang %>" kind="<%= captions.kind %>" label="<%= captions.label %>" />
</video>
</script>
<script type="text/template" id="video-item-template">
<li class="list-group-item">
<%= title %>
<span class="badge">
<%= video.time %>
</span>
</li>
</script>
</body>
</html>