-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
43 lines (34 loc) · 1.05 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
<!--
jQuery Mobile Boilerplate
index.html
-->
<!doctype html>
<html>
<head>
<title> jQuery Mobile Boilerplate </title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- jQuery Mobile CSS bits -->
<link rel="stylesheet" href="css/jquery.mobile-1.0.1.min.css" />
<!-- external css -->
<link rel="stylesheet" type="text/css" href="css/qunit.css" />
<link rel="stylesheet" type="text/css" href="css/js-mindmap.css" />
<!-- Custom css -->
<link rel="stylesheet" href="css/custom.css" />
<!-- Javascript includes -->
<script type="text/javascript" data-main="js/main" src="js/lib/require.js"></script>
</head>
<body class="tests">
<div data-role="page">
<div data-role="header">
<h1>Word Mapp</h1>
</div>
<div data-role="content">
<div class="wordMapp" data-url="http://words.bighugelabs.com/api/2/4a710c62a0ebc1bbca3339031c902598/{word}/json" data-level="noun"></div>
</div>
<div data-role="footer">
<p>© 2012 - jQuery Mobile Boilerplate</p>
</div>
</div>
</body>
</html>