1
0

learn.html 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  5. <title>Learn Smalltalk with ProfStef</title>
  6. <link href='http://fonts.googleapis.com/css?family=Istok+Web' rel='stylesheet' type='text/css'>
  7. <meta name="author" content="Nicolas Petton">
  8. <link rel="stylesheet" type="text/css" href="css/profstef.css">
  9. <script type='text/javascript' src='the.js'></script>
  10. <script type='text/javascript'>
  11. require(['app'], function (amber) {
  12. amber.initialize({
  13. //used for all new packages in IDE
  14. 'transport.defaultAmdNamespace': "amber-trysmalltalk"
  15. });
  16. jQuery('#tutorial').empty();
  17. amber.globals.TrySmalltalkWidget._new()._appendToJQuery_(jQuery('#tutorial'));
  18. });
  19. </script>
  20. </head>
  21. <body>
  22. <div class="main">
  23. <a id="back" href="/"> &larr; back to amber-lang.net </a>
  24. <img src="images/profstef.png"/>
  25. <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>
  26. <div id="tutorial"><h2>Loading...</h2></div>
  27. </div>
  28. <div id="footer">
  29. <div class="main">
  30. <p>Copyright &copy; 2011 <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>
  31. <p>Amber is an opensource project sponsored by <a href="http://www.objectfusion.fr/">objectfusion</a>.</p>
  32. </div>
  33. </div>
  34. </body>
  35. </html>