learn.html 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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','jquery'], function (amber,$) {
  12. amber.initialize({
  13. //used for all new packages in IDE
  14. 'transport.defaultAmdNamespace': "amber-trysmalltalk"
  15. });
  16. $('#tutorial').empty();
  17. $('#version').text('v' + amber.globals.Smalltalk._version());
  18. amber.globals.TrySmalltalkWidget._new()._appendToJQuery_(jQuery('#tutorial'));
  19. });
  20. </script>
  21. </head>
  22. <body>
  23. <div class="main">
  24. <a id="back" href="/"> &larr; back to amber-lang.net </a>
  25. <div>Amber <span id="version" style="color:red"></span></div>
  26. <img src="images/profstef.png"/>
  27. <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>
  28. <div id="tutorial"><h2>Loading...</h2></div>
  29. </div>
  30. <div id="footer">
  31. <div class="main">
  32. <p>Copyright &copy; 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>
  33. <p>Amber is an opensource project sponsored by <a href="http://www.objectfusion.fr/">objectfusion</a>.</p>
  34. </div>
  35. </div>
  36. </body>
  37. </html>