-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathlearn.html
44 lines (37 loc) · 1.69 KB
/
learn.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Learn Smalltalk with ProfStef</title>
<link href='http://fonts.googleapis.com/css?family=Istok+Web' rel='stylesheet' type='text/css'>
<meta name="author" content="Nicolas Petton">
<link rel="stylesheet" type="text/css" href="css/profstef.css">
<script type='text/javascript' src='the.js'></script>
<script type='text/javascript'>
require(['app','jquery'], function (amber,$) {
amber.initialize({
//used for all new packages in IDE
'transport.defaultAmdNamespace': "amber-trysmalltalk"
});
$('#tutorial').empty();
$('#version').text('v' + amber.globals.Smalltalk._version());
amber.globals.TrySmalltalkWidget._new()._appendToJQuery_(jQuery('#tutorial'));
});
</script>
</head>
<body>
<div class="main">
<a id="back" href="/"> ← back to amber-lang.net </a>
<div>Amber <span id="version" style="color:red"></span></div>
<img src="images/profstef.png"/>
<h1>Hey there! Got 5 minutes? I'm prof Stef and I want to teach you Smalltalk. I promise, it won't take long!</h1>
<div id="tutorial"><h2>Loading...</h2></div>
</div>
<div id="footer">
<div class="main">
<p>Copyright © 2011-2015 <a href="http://www.nicolas-petton.fr/">Nicolas Petton</a>. The content of this website in licensed under <a href="http://creativecommons.org/licenses/by-nc/3.0/">CC-BY-NC 3.0</a>.</p>
<p>Amber is an opensource project sponsored by <a href="http://www.objectfusion.fr/">objectfusion</a>.</p>
</div>
</div>
</body>
</html>