-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
72 lines (62 loc) · 3.09 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
<!doctype html>
<html lang="en" class="no-js">
<title>
Diaspora X²
</title>
<meta charset="utf-8">
<link href='.//public/stylesheets/960.css' media='screen' rel='stylesheet' type='text/css' />
<link href='.//public/stylesheets/application.less' rel='stylesheet/less' type='text/css' />
<script src='.//lib/jquery.js' type='text/javascript'></script>
<script src='.//lib/underscore.js' type='text/javascript'></script>
<script src='.//lib/backbone.js' type='text/javascript'></script>
<script src='.//lib/coffeescript.js' type='text/javascript'></script>
<script src='.//lib/less.js' type='text/javascript'></script>
<script src='.//lib/strophe.js' type='text/javascript'></script>
<script src='.//lib/timeago.js' type='text/javascript'></script>
<script src='.//lib/md5.js' type='text/javascript'></script>
<script src='.//app/controllers/application.coffee' type='text/coffeescript'></script>
<script src='.//app/controllers/auth_controller.coffee' type='text/coffeescript'></script>
<script src='.//app/controllers/users_controller.coffee' type='text/coffeescript'></script>
<script src='.//app/controllers/welcome_controller.coffee' type='text/coffeescript'></script>
<script src='.//app/views/auth/login.coffee' type='text/coffeescript'></script>
<script src='.//app/views/channels/list.coffee' type='text/coffeescript'></script>
<script src='.//app/views/common/auth.coffee' type='text/coffeescript'></script>
<script src='.//app/views/common/maintabs.coffee' type='text/coffeescript'></script>
<script src='.//app/views/common/page.coffee' type='text/coffeescript'></script>
<script src='.//app/views/posts/list.coffee' type='text/coffeescript'></script>
<script src='.//app/views/users/list.coffee' type='text/coffeescript'></script>
<script src='.//app/views/users/show.coffee' type='text/coffeescript'></script>
<script src='.//app/views/welcome/index.coffee' type='text/coffeescript'></script>
<script src='.//app/models/channel.coffee' type='text/coffeescript'></script>
<script src='.//app/models/post.coffee' type='text/coffeescript'></script>
<script src='.//app/models/user.coffee' type='text/coffeescript'></script>
</head>
<body>
<div id='notification'></div>
<div id="log"></div>
<div class='header'>
<div class="container_12">
<div class="grid_5">
<h1><a href="#home">DIASPORA*</a> <span class='sub_text'>X²</span></h1>
</div>
<div class="grid_3 prefix_3" id="auth-container">
</div>
<div class="clear"></div>
<ul class="tabs" id="main-tabs">
</ul>
</div>
</div>
<div class='container_12' id="content">
</div>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-4944761-5']);
_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>