-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
122 lines (108 loc) · 5.34 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!Doctype html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Generate HTML5 video player</title>
<!-- style sheets material design plus custom -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:regular,bold,italic,thin,light,bolditalic,black,medium&lang=en">
<link rel="stylesheet" href="https://storage.googleapis.com/code.getmdl.io/1.0.6/material.teal-orange.min.css" />
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link href="css/StyleSheet.css" rel="stylesheet" />
<link href="css/responsive.css" rel="stylesheet" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Chrome, Firefox OS and Opera -->
<meta name="theme-color" content="#00796B">
<!-- Windows Phone -->
<meta name="msapplication-navbutton-color" content="#00796B">
<!-- iOS Safari -->
<meta name="apple-mobile-web-app-status-bar-style" content="#00796B">
</head>
<body ng-app="video">
<div class="mdl-layout mdl-js-layout mdl-layout--fixed-header wrapper">
<!-- header starts -->
<header class="mdl-layout__header">
<div class="mdl-layout__header-row">
<!-- Title -->
<span class="mdl-layout-title">HTML5 Video Player Generator</span>
<!-- Add spacer, to align navigation to the right -->
<div class="mdl-layout-spacer"></div>
<!-- Navigation. We hide it in small screens. -->
<nav class="mdl-navigation mdl-layout--large-screen-only">
<a class="mdl-navigation__link" href="#/">Generate</a>
<a class="mdl-navigation__link" href="#/docs">Docs</a>
<a class="mdl-navigation__link" href="http://dsdilpreet.github.io/contact.html">Contact</a>
</nav>
</div>
</header>
<div class="mdl-layout__drawer">
<span class="mdl-layout-title">Menu</span>
<nav class="mdl-navigation">
<a class="mdl-navigation__link" href="#/">Generate</a>
<a class="mdl-navigation__link" href="#/docs">Docs</a>
<a class="mdl-navigation__link" href="http://dsdilpreet.github.io/contact.html">Contact</a>
</nav>
</div>
<!-- header ends -->
<main class="mdl-layout__content">
<div ng-view></div>
<div class="bottom">
<!-- More Cool Stuff Section -->
<div class="mdl-typography--text-center more-stuff mdl-shadow--2dp">
<div class="mdl-cell--12-col more-stuff-info">
More cool stuff @
<a href="http://dsdilpreet.github.io/">dsdilpreet.github.io</a>
</div>
</div>
<!-- footer starts -->
<footer class="mdl-mini-footer mdl-shadow--3dp">
<div class="mdl-mini-footer__left-section footer-sections footer-sec-1">
<div class="mdl-logo">
Developed by Dilpreet Singh
</div>
</div>
<div class="mdl-cell--middle footer-sections footer-sec-2">
<div style="width: 36px; margin: 0 auto 0; display: block; ">
<a href="/">
<i class="material-icons mdl-logo logo">play_circle_filled</i>
</a>
</div>
</div>
<div class="mdl-mini-footer__right-section footer-sections footer-sec-3">
<a class="mdl-mini-footer__social-btn" href="https://twitter.com/dil_singh"><img src="img/twitter.png" /></a>
<a class="mdl-mini-footer__social-btn" href="http://nz.linkedin.com/in/dsingh94"><img src="img/linkedin.png" /></a>
<a class="mdl-mini-footer__social-btn" href="http://dsdilpreet.github.io/"><img src="img/github.png" /></a>
</div>
</footer>
</div>
</main>
<!-- main content ends here -->
</div>
<!--clipboard library-->
<script src="js/vendor/clipboard.min.js"></script>
<script>
var clipboard = new Clipboard('.btn');
clipboard.on('success', function (e) {
console.log(e);
});
clipboard.on('error', function (e) {
console.log(e);
});
</script>
<script src="js/vendor/material.min.js"></script>
<!-- Scripts run after page -->
<script src="js/vendor/angular.min.js"></script>
<script src="js/vendor/angular-route.min.js"></script>
<script src="js/app.js" type="text/javascript"></script>
<!-- controllers -->
<script src="js/controller/control.js"></script>
<script src="js/controller/previewControl.js"></script>
<!-- directives -->
<script src="js/directive/selectControlDirective.js"></script>
<script src="js/directive/previewControlDirective.js"></script>
<script src="js/directive/htmlOutputDirective.js"></script>
<script src="js/directive/cssOutputDirective.js"></script>
<script src="js/directive/jsOutputDirective.js"></script>
<!-- filters -->
<script src="js/filter/time.js"></script>
</body>
</html>