-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
118 lines (115 loc) · 4.32 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<script src='http://use.typekit.com/aow5drr.js' type='text/javascript'></script>
<script type='text/javascript'>
try{ Typekit.load(); } catch(e) { }
</script>
<meta charset='utf-8' />
<meta content='IE=edge,chrome=1' http-equiv='X-UA-Compatible' />
<meta content='The Miso Project' name='description' />
<meta content='The Miso Project' name='name' />
<meta content='width=device-width' name='viewport' />
<title>The Miso Project</title>
<link href='/stylesheets/screen.css' rel='stylesheet' />
<link href='/stylesheets/codemirror.css' rel='stylesheet' />
</head>
<body>
<nav>
<span class='miso'>
<a href='/'>
Miso
</a>
</span>
<span>
<a href='/dataset'>
Dataset
</a>
</span>
<span>
<a href='/storyboard'>
Storyboard
</a>
</span>
<span>
<a href='/d3-chart'>
d3.chart
</a>
</span>
</nav>
<article class='miso'>
<section class='intro'>
<div class='left'>
<img src='/images/logo.png' />
<p>
Miso is an open source toolkit designed to expedite the creation of high-quality interactive storytelling and data visualisation content.
</p>
<p>
Miso consists of <a href="/dataset">Dataset</a>, a JavaScript client-side data management and transformation library,
<a href="/storyboard">Storyboard</a>, a state and flow-control management library & <a href="/d3-chart">d3.chart</a>, a framework for creating reusable charts with d3.js.
</p>
<p>
Miso is in active development, and will have components released as they are completed. Follow along:
<a href='http://www.twitter.com/themisoproject'>@TheMisoProject</a>
&
<a href='http://www.github.com/misoproject'>Github</a>
</p>
</div>
</section>
</article>
<footer>
<div class='container'>
<section>
<h2>
A joint project between
</h2>
<div class='content'>
<a href='http://www.guardian.co.uk/profile/guardian-interactive-department'>
<img alt="Guardian" src="/images/guardian.png"/>
</a>
<a href='http://www.bocoup.com'>
<img alt="Bocoup horizontal 614" src="/images/bocoup-horizontal-614.gif"/>
</a>
</div>
</section>
<section>
<h2>
Supported by
</h2>
<div class='content'>
<a href='http://www.guardian.co.uk/development'>
<img alt="Global dev" src="/images/global-dev.png"/>
</a>
<a href='http://www.gatesfoundation.org/'>
<img alt="Gates" src="/images/gates.png"/>
</a>
</div>
</section>
</div>
</footer>
<script src='/js/jquery.min.js'></script>
<script src='/js/miso.ds.deps.js'></script>
<script src='/js/bootstrap/transition.js'></script>
<script src='/js/bootstrap/collapse.js'></script>
<script src='/js/codemirror.js'></script>
<script src='/js/codeblocks.js'></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-30531498-1']);
_gaq.push(['_setDomainName', 'misoproject.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>