forked from jgergic/gooddata.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
87 lines (69 loc) · 2.74 KB
/
index.html
File metadata and controls
87 lines (69 loc) · 2.74 KB
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
---
title: Welcome to GoodData SDK Site
layout: sdk
---
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div style="margin-left: 100px;">
<button type="button" class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="brand" href="{{ site.url }}">
<img src="{{ site.url }}/images/header-logo.png" alt="GoodData Labs" width="24" height="24">
GoodData<span style="color: #32c9d1;"> SDKs
</a>
<div class="nav-collapse collapse container" >
</div>
</div>
</div>
</div>
<div class="container-narrow">
<div class="row-fluid marketing">
<div class="span6">
<div>
<img src="http://www.defaulticon.com/sites/default/files/styles/icon-front-page-32x32-preview/public/field/image/MD-shuffle.png?itok=zffXPwRr" width="50px">
<h4 style="display: inline;">Expressive</h4>
<p>Do more with less code.</p>
</div>
<div>
<img src="http://www.defaulticon.com/sites/default/files/styles/icon-front-page-32x32-preview/public/field/image/hammer.png?itok=GwaBj_x2" width="50px">
<h4 style="display: inline;">Battle Tested</h4>
<p>Used on 10s of projects written by people at GoodData.</p>
</div>
</div>
</div>
</div>
<div class="divider">
<h2>The Story</h2>
</div>
<div class="row-fluid marketing container-narrow" style="margin: auto;">
<div class="span12" >
<div style="margin: 25px 0 25px 0;font-size: 18px;line-height:1.3;">
Feel free to help us build the next one SDK.
</div>
</div>
</div>
<div id="sidebar">
<h3>BI Cloud Platform at Your Fingertips</h3>
<div id="stats">
<em>Lots of</em> REST API calls this week
</div>
</div>
<!-- Grab Google CDN's jQuery. fall back to local if necessary -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script>!window.jQuery && document.write('<script src="{{ site.url }}/js/jquery.min.js"><\/script>')</script>
<script src="{{ site.root }}/js/number-functions.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript" charset="utf-8">
var em = $('#stats em'), rate = 84.235497685, counterString='', counter, weekOffset;
function updateTimer() {
weekOffset = (((new Date()).getTime() - 1285538400000) % 604800000) / 1000; // offset from the start of week in seconds
counter = weekOffset * rate;
em.text(Math.round(counter).numberFormat('0,0'));
}
setInterval(updateTimer,1200);
updateTimer();
$('#stats').show();
});
</script>