-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
54 lines (47 loc) · 1.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>UDJ - The Social Media Player</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<!-- Le styles -->
<link href="assets/css/udj.css" rel="stylesheet">
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Le fav and touch icons -->
<link href="https://s3.amazonaws.com/udj_static/img/udjfavicon.ico" rel="shortcut icon"/>
</head>
<body>
<div class="container" id="appSplash">
<div class="row">
<div class="span4 offset4 loggin-box">
<div class="well loggin-box-inner">
<img src="assets/img/logo-big.png">
<h2>UDJ</h2>
<div class="span3 progress progress-striped active">
<div class="bar" style="width: 100%"></div>
</div>
<div class="clearfix"></div>
</div>
</div>
</div>
</div>
<script type="application/dart" src="udj.dart"></script>
<script src="packages/browser/dart.js"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-35681780-1']);
_gaq.push(['_setDomainName', 'udjplayer.com']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>