-
Notifications
You must be signed in to change notification settings - Fork 70
/
index.html
56 lines (41 loc) · 1.67 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
---
# Front matter so that Jekyll processes the file
---
<!DOCTYPE html>
<html lang="en">
<head>
<title>Raphael SketchPad</title>
<meta charset="UTF-8"/>
<meta http-equiv="content-language" content="en">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<!-- Blueprint CSS -->
<link rel="stylesheet" href="stylesheets/cw15gw20cc24/screen.css" type="text/css" media="screen, projection">
<link rel="stylesheet" href="stylesheets/cw15gw20cc24/print.css" type="text/css" media="print">
<!--[if IE]><link rel="stylesheet" href="stylesheets/cw15gw20cc24/ie.css" type="text/css" media="screen, projection"><![endif]-->
<link rel="stylesheet" href="stylesheets/main.css">
<!-- Javascripts -->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript" src="javascripts/raphael-2.0.1.js"></script>
<script type="text/javascript" src="javascripts/json2.min.js"></script>
<script type="text/javascript" src="src/raphael.sketchpad.js"></script>
</head>
<body>
<div class="container">
{% include header.html %}
<!--==================== Body ====================-->
<div id="bd" class="span-24">
{% include how-it-works.html %}
{% include how-to-use-it.html %}
{% include reference.html %}
{% include editing.html %}
</div>
<!--==================== Footer ====================-->
<div id="ft" class="span-24">
© 2011 Raphael SketchPad by
<a href="http://ianli.com">Ian Li</a>.
<a href="http://www.opensource.org/licenses/mit-license.php">Licensed under the MIT license.</a>
</div>
</div>
{% include analytics.html %}
</body>
</html>