-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmorphic.html
30 lines (25 loc) · 1011 Bytes
/
morphic.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
<!DOCTYPE html>
<html>
<head>
<title>Amber Smalltalk</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="author" content="Nicolas Petton" />
<script type='text/javascript' src='js/amber.js'></script>
<!-- Twitter Bootstrap -->
<link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.min.css" rel="stylesheet">
<script src="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/js/bootstrap.min.js"></script>
<link href="//netdna.bootstrapcdn.com/bootswatch/2.3.2/cosmo/bootstrap.min.css" rel="stylesheet">
<link href="font-awesome/css/font-awesome.css" rel="stylesheet">
</head>
<body style="overflow: hidden;">
<div id="workspace">
</div>
<script type='text/javascript'>
loadAmber({ready: function() {
//amber.loadHelios();
//smalltalk.Browser._open();
smalltalk.AthensMorphicTutorialLauncher._open();
}});
</script>
</body>
</html>